summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-11-04 15:01:49 -0400
committerNed Batchelder <ned@nedbatchelder.com>2017-11-04 15:01:49 -0400
commit1523ffa9e5f26a782981409ecb784e24e074f250 (patch)
tree34a104e530c712c58f6d42ef27ccfb3e0c795f91 /tests
parent2b75fee1c634a3d6b7bea807657767370685e74b (diff)
downloadpython-coveragepy-1523ffa9e5f26a782981409ecb784e24e074f250.tar.gz
One start() was missing a stop(), which caused meta issues on appveyor
Diffstat (limited to 'tests')
-rw-r--r--tests/test_api.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_api.py b/tests/test_api.py
index d7e47db..b5fcd53 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.