summaryrefslogtreecommitdiff
path: root/tests/test_api.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-05-08 18:14:17 -0400
committerNed Batchelder <ned@nedbatchelder.com>2016-05-08 18:14:17 -0400
commit750c6ec84b8f10a5f13b57428ea07cb3a3f0b277 (patch)
tree9edc0b6454a71e4d8b4aafef2d4ea3c9486c0487 /tests/test_api.py
parentd7397a71324bcec6f12773f1d6deac3ab64e64e4 (diff)
downloadpython-coveragepy-750c6ec84b8f10a5f13b57428ea07cb3a3f0b277.tar.gz
Correct the defaults for coverage.report(show_missing=None, skip_covered=None)
Diffstat (limited to 'tests/test_api.py')
-rw-r--r--tests/test_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_api.py b/tests/test_api.py
index 4c03851..f849695 100644
--- a/tests/test_api.py
+++ b/tests/test_api.py
@@ -548,7 +548,7 @@ class TestRunnerPluginTest(CoverageTest):
self.start_import_stop(cov, "no_biggie")
cov.combine()
cov.save()
- cov.report(["no_biggie.py"])
+ cov.report(["no_biggie.py"], show_missing=True)
self.assertEqual(self.stdout(), textwrap.dedent("""\
Name Stmts Miss Cover Missing
--------------------------------------------