summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-11-03 19:29:00 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-11-03 19:29:00 -0400
commit89d529895a21c40d1e3f3913b02540f32ab9a0b9 (patch)
treedde3b370d68a0049afb1715613ca8982e0d7a4ee /igor.py
parente1331826649b26465f090ad9e3100ea0870aefc3 (diff)
downloadpython-coveragepy-git-89d529895a21c40d1e3f3913b02540f32ab9a0b9.tar.gz
Debug-time environment variables can be set with set_env.py
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/igor.py b/igor.py
index 750ea688..78de37a2 100644
--- a/igor.py
+++ b/igor.py
@@ -74,8 +74,10 @@ def label_for_tracer(tracer):
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")
else:
+ # $set_env.py: COVERAGE_NO_CTRACER - Don't run the tests under the C tracer.
skipper = os.environ.get("COVERAGE_NO_CTRACER")
if skipper: