(self)
| 514 | return self._outcome.result._excinfo is not None and self._outcome.result._excinfo # type: ignore |
| 515 | |
| 516 | def tearDown(self): |
| 517 | super().tearDown() |
| 518 | responses.stop() |
| 519 | responses.reset() |
| 520 | self.__closeReplayFileIfNeeded(silent=self.thisTestFailed) |
| 521 | github.Requester.Requester.resetConnectionClasses() |
| 522 | |
| 523 | def assertWarning(self, warning, expected): |
| 524 | self.assertWarnings(warning, expected) |
nothing calls this directly
no test coverage detected