(self, test, err)
| 112 | self.stream.flush() |
| 113 | |
| 114 | def addFailure(self, test, err): |
| 115 | super(TextTestResult, self).addFailure(test, err) |
| 116 | t = self._theme |
| 117 | if self.showAll: |
| 118 | self._write_status(test, f"{t.fail}FAIL{t.reset}") |
| 119 | elif self.dots: |
| 120 | self.stream.write(f"{t.fail}F{t.reset}") |
| 121 | self.stream.flush() |
| 122 | |
| 123 | def addSkip(self, test, reason): |
| 124 | super(TextTestResult, self).addSkip(test, reason) |
nothing calls this directly
no test coverage detected