[svn r38124] No, this is needed for C-c to work.
--HG-- branch : trunk
This commit is contained in:
parent
356b831208
commit
ee04997eb2
|
@ -29,6 +29,8 @@ class RunExecutor(object):
|
|||
outcome = Outcome()
|
||||
except Skipped, e:
|
||||
outcome = Outcome(skipped=str(e))
|
||||
except (SystemExit, KeyboardInterrupt):
|
||||
raise
|
||||
except:
|
||||
excinfo = py.code.ExceptionInfo()
|
||||
if isinstance(self.item, py.test.Function):
|
||||
|
|
Loading…
Reference in New Issue