diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-11-04 15:01:49 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-11-04 15:01:49 -0400 |
commit | fd6c77243dfa7f6ac1c9d5898195bde445d05eac (patch) | |
tree | e6b70e41fdec964a538a477743a199afb4ec64e3 /tests/test_api.py | |
parent | 52a691531e3c290e2e8d664878145c67a04bfd45 (diff) | |
download | python-coveragepy-git-fd6c77243dfa7f6ac1c9d5898195bde445d05eac.tar.gz |
One start() was missing a stop(), which caused meta issues on appveyor
Diffstat (limited to 'tests/test_api.py')
-rw-r--r-- | tests/test_api.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_api.py b/tests/test_api.py index d7e47db8..b5fcd53f 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -581,6 +581,7 @@ class SourceOmitIncludeTest(OmitIncludeTestsMixin, CoverageTest): cov = coverage.Coverage(source=["pkg1"], include=["pkg2"]) with self.assert_warnings(cov, ["--include is ignored because --source is set"]): cov.start() + cov.stop() def test_source_package_as_dir(self): # pkg1 is a directory, since we cd'd into tests/modules in setUp. |