summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--igor.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/igor.py b/igor.py
index 07641f95..88093826 100644
--- a/igor.py
+++ b/igor.py
@@ -155,11 +155,8 @@ def run_tests_with_coverage(tracer, *runner_args):
sys.modules.update(covmods)
# Run tests, with the arguments from our command line.
- try:
- run_tests(tracer, *runner_args)
- except SystemExit:
- # nose3 seems to raise SystemExit, not sure why?
- pass
+ run_tests(tracer, *runner_args)
+
finally:
cov.stop()
os.remove(pth_path)