diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-17 21:00:38 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-17 21:00:38 -0400 |
commit | 19fc2711ee2cca769f57886f8a7fc47f1612691c (patch) | |
tree | 8c61460c02c02b33863ab6cfba40ca91c2d86672 /igor.py | |
parent | 3617d1a30c87e1c7a4d244106b8cd5ca2d98c80d (diff) | |
parent | b4c78975cbc67d14bcd9cba5bff2abaa3850b1c9 (diff) | |
download | python-coveragepy-git-19fc2711ee2cca769f57886f8a7fc47f1612691c.tar.gz |
Merge in the C implementation of coroutine support.
Diffstat (limited to 'igor.py')
-rw-r--r-- | igor.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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"): |