summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-11-10 07:23:12 -0500
committerNed Batchelder <ned@nedbatchelder.com>2019-11-10 07:23:12 -0500
commit7cbd4e94bfb8eac5dbeb418bc5b75cffb19db227 (patch)
treed9feaaabba2c6926c6241956baa60f0058c5c60e /igor.py
parent39f8ce22f2a6fa9d19f45211b5981ac900b8154b (diff)
downloadpython-coveragepy-git-7cbd4e94bfb8eac5dbeb418bc5b75cffb19db227.tar.gz
Details of context tracing
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/igor.py b/igor.py
index e86c5ff9..0c550dfb 100644
--- a/igor.py
+++ b/igor.py
@@ -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")