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):