diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-11-29 07:51:56 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-12-01 07:32:33 -0500 |
commit | 10e41ab0dc165b3fd010345ab0fb1ed319d2f230 (patch) | |
tree | b42b42c0eb5af92f39b8b20dd8914bc5001043df /tests/test_process.py | |
parent | 5901967e95ae72ec2b5be05bc08e1924e08a604b (diff) | |
download | python-coveragepy-git-10e41ab0dc165b3fd010345ab0fb1ed319d2f230.tar.gz |
I'm not sure why I was deleting these meta env vars
Don't we want to measure the coverage of subprocesses we start in tests?
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index d3f7d56f..4a1e6348 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -605,6 +605,9 @@ class ProcessTest(CoverageTest): def test_warnings_trace_function_changed_with_threads(self): # https://bitbucket.org/ned/coveragepy/issue/164 + if env.METACOV: + self.skipTest("Can't test tracers changing during metacoverage") + self.make_file("bug164.py", """\ import threading import time |