summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-09-17 21:00:38 -0400
committerNed Batchelder <ned@nedbatchelder.com>2014-09-17 21:00:38 -0400
commit19fc2711ee2cca769f57886f8a7fc47f1612691c (patch)
tree8c61460c02c02b33863ab6cfba40ca91c2d86672 /igor.py
parent3617d1a30c87e1c7a4d244106b8cd5ca2d98c80d (diff)
parentb4c78975cbc67d14bcd9cba5bff2abaa3850b1c9 (diff)
downloadpython-coveragepy-git-19fc2711ee2cca769f57886f8a7fc47f1612691c.tar.gz
Merge in the C implementation of coroutine support.
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/igor.py b/igor.py
index e0071bd8..07e13f68 100644
--- a/igor.py
+++ b/igor.py
@@ -45,6 +45,9 @@ def run_tests(tracer, *nose_args):
import nose.core
if tracer == "py":
label = "with Python tracer"
+ if os.environ.get("COVERAGE_NO_PYTRACER"):
+ print("Skipping tests, don't want PyTracer")
+ return
else:
label = "with C tracer"
if os.environ.get("COVERAGE_NO_EXTENSION"):