summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/igor.py b/igor.py
index 2048d16..daf1053 100644
--- a/igor.py
+++ b/igor.py
@@ -162,7 +162,7 @@ def run_tests_with_coverage(tracer, *runner_args):
sys.modules.update(covmods)
# Run tests, with the arguments from our command line.
- run_tests(tracer, *runner_args)
+ status = run_tests(tracer, *runner_args)
finally:
cov.stop()
@@ -171,6 +171,8 @@ def run_tests_with_coverage(tracer, *runner_args):
cov.combine()
cov.save()
+ return status
+
def do_combine_html():
"""Combine data from a meta-coverage run, and make the HTML and XML reports."""