diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-04-18 08:35:47 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-04-18 08:35:47 -0400 |
commit | 84f6580e6ba48e34485f017afea1b8f62824514a (patch) | |
tree | 32726facf9af9d4019fb17fef725784e71aed15e /coverage/control.py | |
parent | b5b0316a0625b3e3b1fe258375c7d37a0bd0072c (diff) | |
download | python-coveragepy-84f6580e6ba48e34485f017afea1b8f62824514a.tar.gz |
Add show_missing to the config file. #173.
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/coverage/control.py b/coverage/control.py index eea6b00..ca2a51a 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -557,10 +557,11 @@ class coverage(object): """ self.config.from_args( - ignore_errors=ignore_errors, omit=omit, include=include + ignore_errors=ignore_errors, omit=omit, include=include, + show_missing=show_missing, ) reporter = SummaryReporter( - self, show_missing, self.config.ignore_errors + self, self.config.show_missing, self.config.ignore_errors ) reporter.report(morfs, outfile=file, config=self.config) |