From 7bebd77165852ba165406df1587f8b9a69ab1363 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 20 Jul 2014 20:30:09 -0400 Subject: An option to not run the PyTracer tests --HG-- branch : c-coroutine --- igor.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'igor.py') 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"): -- cgit v1.2.1