From 1523ffa9e5f26a782981409ecb784e24e074f250 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 4 Nov 2017 15:01:49 -0400 Subject: One start() was missing a stop(), which caused meta issues on appveyor --- tests/test_api.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tests') 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. -- cgit v1.2.1