From b94ad59aaa14209385e65c9ede38c618c3377097 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 21 Nov 2016 07:11:33 -0500 Subject: Didn't know why we needed it, and now it seems like we don't. --- igor.py | 7 ++----- 1 file 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) -- cgit v1.2.1