diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-11-10 07:23:12 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-11-10 07:23:12 -0500 |
commit | 7cbd4e94bfb8eac5dbeb418bc5b75cffb19db227 (patch) | |
tree | d9feaaabba2c6926c6241956baa60f0058c5c60e /igor.py | |
parent | 39f8ce22f2a6fa9d19f45211b5981ac900b8154b (diff) | |
download | python-coveragepy-git-7cbd4e94bfb8eac5dbeb418bc5b75cffb19db227.tar.gz |
Details of context tracing
Diffstat (limited to 'igor.py')
-rw-r--r-- | igor.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,7 +75,7 @@ def should_skip(tracer): """Is there a reason to skip these tests?""" if tracer == "py": # $set_env.py: COVERAGE_NO_PYTRACER - Don't run the tests under the Python tracer. - skipper = os.environ.get("COVERAGE_NO_PYTRACER") or os.environ.get("COVERAGE_CONTEXT") + skipper = os.environ.get("COVERAGE_NO_PYTRACER") else: # $set_env.py: COVERAGE_NO_CTRACER - Don't run the tests under the C tracer. skipper = os.environ.get("COVERAGE_NO_CTRACER") |