[py-svn] r36330 - py/dist/py/test/rsession

fijal at codespeak.net fijal at codespeak.net
Tue Jan 9 12:03:00 CET 2007


Author: fijal
Date: Tue Jan  9 12:02:59 2007
New Revision: 36330

Modified:
   py/dist/py/test/rsession/rsession.py
Log:
ouch.


Modified: py/dist/py/test/rsession/rsession.py
==============================================================================
--- py/dist/py/test/rsession/rsession.py	(original)
+++ py/dist/py/test/rsession/rsession.py	Tue Jan  9 12:02:59 2007
@@ -160,7 +160,7 @@
         """
         self.was_failure = False
         def new_reporter(event):
-            if isinstance(event, report.ReceivedItemOutcome) and not event.outcome.passed:
+            if isinstance(event, report.ReceivedItemOutcome) and not event.outcome.passed and not event.outcome.skipped:
                 self.was_failure = True
             return reporter(event)
         checkfun = lambda : self.config.option.exitfirst and \


More information about the py-svn mailing list