[svn r38112] This time don't catch SystemExit. Increases stability

--HG--
branch : trunk
This commit is contained in:
fijal 2007-02-07 20:53:03 +01:00
parent 028ffa53b2
commit 632cc727e4
1 changed files with 0 additions and 2 deletions

View File

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