[py-svn] r38112 - py/trunk/py/test/rsession

fijal at codespeak.net fijal at codespeak.net
Wed Feb 7 20:53:04 CET 2007


Author: fijal
Date: Wed Feb  7 20:53:03 2007
New Revision: 38112

Modified:
   py/trunk/py/test/rsession/executor.py
Log:
This time don't catch SystemExit. Increases stability


Modified: py/trunk/py/test/rsession/executor.py
==============================================================================
--- py/trunk/py/test/rsession/executor.py	(original)
+++ py/trunk/py/test/rsession/executor.py	Wed Feb  7 20:53:03 2007
@@ -29,8 +29,6 @@
             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): 



More information about the pytest-commit mailing list