summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-04-18 08:35:47 -0400
committerNed Batchelder <ned@nedbatchelder.com>2012-04-18 08:35:47 -0400
commit9840d2de631dbfb99306c9b2930bcf40a624bbfb (patch)
tree9a65bad8e59e769ebd0ebcec29fa92628f52d82f /coverage/control.py
parent964668c05af407eb95aad0b15e90b29f0ad0c53c (diff)
downloadpython-coveragepy-git-9840d2de631dbfb99306c9b2930bcf40a624bbfb.tar.gz
Add show_missing to the config file. #173.
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/coverage/control.py b/coverage/control.py
index eea6b00a..ca2a51ab 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)