summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/igor.py b/igor.py
index 36025c44..5d80ebe3 100644
--- a/igor.py
+++ b/igor.py
@@ -179,7 +179,7 @@ def do_test_with_tracer(tracer, *runner_args):
return None
os.environ["COVERAGE_TEST_TRACER"] = tracer
- if os.environ.get("COVERAGE_COVERAGE", ""):
+ if os.environ.get("COVERAGE_COVERAGE", "no") == "yes":
return run_tests_with_coverage(tracer, *runner_args)
else:
return run_tests(tracer, *runner_args)