From 632cc727e42240ea96831d3ab83f91264f6d1261 Mon Sep 17 00:00:00 2001 From: fijal Date: Wed, 7 Feb 2007 20:53:03 +0100 Subject: [PATCH] [svn r38112] This time don't catch SystemExit. Increases stability --HG-- branch : trunk --- py/test/rsession/executor.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/py/test/rsession/executor.py b/py/test/rsession/executor.py index aa13c8633..17be5cffd 100644 --- a/py/test/rsession/executor.py +++ b/py/test/rsession/executor.py @@ -29,8 +29,6 @@ class RunExecutor(object): outcome = Outcome() except Skipped, e: outcome = Outcome(skipped=str(e)) - except (KeyboardInterrupt, SystemExit): - raise except: excinfo = py.code.ExceptionInfo() if isinstance(self.item, py.test.Function):