summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-10-13 10:41:33 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-10-13 10:41:33 -0400
commit1fbfb4077380530b01306e1e052b1d34a0930ec9 (patch)
treebc01571afb47d9de4caea912b5da5f5bc381b2ce /igor.py
parent3569f921992e10036281d469f22cf4a2e06a6c45 (diff)
downloadpython-coveragepy-git-1fbfb4077380530b01306e1e052b1d34a0930ec9.tar.gz
Oops, we were always measuring coverage on Travis
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)