Called when an error has occurred. 'err' is a tuple of values as returned by sys.exc_info().
(self, test, err)
| 110 | |
| 111 | @failfast |
| 112 | def addError(self, test, err): |
| 113 | """Called when an error has occurred. 'err' is a tuple of values as |
| 114 | returned by sys.exc_info(). |
| 115 | """ |
| 116 | self.errors.append((test, self._exc_info_to_string(err, test))) |
| 117 | self._mirrorOutput = True |
| 118 | |
| 119 | @failfast |
| 120 | def addFailure(self, test, err): |