##// END OF EJS Templates
run-tests: checks behaviour of test on failure while testing...
anuraggoel -
r21753:b7baef94 default
parent child Browse files
Show More
@@ -469,7 +469,8 b' class Test(unittest.TestCase):'
469 # the stack trace. This is for historical reasons and
469 # the stack trace. This is for historical reasons and
470 # this decision could be revisted in the future,
470 # this decision could be revisted in the future,
471 # especially for PythonTest instances.
471 # especially for PythonTest instances.
472 result.addFailure(self, str(e))
472 if result.addFailure(self, str(e)):
473 success = True
473 except Exception:
474 except Exception:
474 result.addError(self, sys.exc_info())
475 result.addError(self, sys.exc_info())
475 else:
476 else:
General Comments 0
You need to be logged in to leave comments. Login now