diff options
-rw-r--r-- | igor.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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.""" |