diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-03 19:29:00 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-03 19:29:00 -0400 |
commit | 89d529895a21c40d1e3f3913b02540f32ab9a0b9 (patch) | |
tree | dde3b370d68a0049afb1715613ca8982e0d7a4ee /igor.py | |
parent | e1331826649b26465f090ad9e3100ea0870aefc3 (diff) | |
download | python-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.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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: |