diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-05-08 18:14:17 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-05-08 18:14:17 -0400 |
commit | 9f3b8ef60c3febac16ebb0a5e54319f7cf4c690f (patch) | |
tree | 611b7574444bf96bfd3180d9855096fa6334fb26 /tests/test_api.py | |
parent | 59e6ad6ccf9cb36eedd0417add05115785b00aad (diff) | |
download | python-coveragepy-git-9f3b8ef60c3febac16ebb0a5e54319f7cf4c690f.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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_api.py b/tests/test_api.py index 4c038519..f849695c 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 -------------------------------------------- |