summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-12-31 09:10:27 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-12-31 09:10:27 -0500
commit0e16713735ca0be15bec7000330ac83cc542ee9c (patch)
tree4d8e4193f4f51602db0f76d4c8e3d222ac457295 /igor.py
parent77517450f7164ab471aad3c8776879306bc33787 (diff)
downloadpython-coveragepy-0e16713735ca0be15bec7000330ac83cc542ee9c.tar.gz
No need for two environment variables that do the same thing
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/igor.py b/igor.py
index daf1053..9d2d43a 100644
--- a/igor.py
+++ b/igor.py
@@ -89,10 +89,7 @@ def should_skip(tracer):
if tracer == "py":
skipper = os.environ.get("COVERAGE_NO_PYTRACER")
else:
- skipper = (
- os.environ.get("COVERAGE_NO_EXTENSION") or
- os.environ.get("COVERAGE_NO_CTRACER")
- )
+ skipper = os.environ.get("COVERAGE_NO_CTRACER")
if skipper:
msg = "Skipping tests " + label_for_tracer(tracer)