diff options
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index b332b3a6..1f2b66ca 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -743,8 +743,8 @@ class ProcessTest(CoverageTest): assert msg in out @pytest.mark.expensive - @pytest.mark.skipif(env.METACOV, reason="Can't test fullcoverage when measuring ourselves") @pytest.mark.skipif(not env.C_TRACER, reason="fullcoverage only works with the C tracer.") + @pytest.mark.skipif(env.METACOV, reason="Can't test fullcoverage when measuring ourselves") def test_fullcoverage(self): # fullcoverage is a trick to get stdlib modules measured from # the very beginning of the process. Here we import os and |