(self, excrepr: ExceptionRepr)
| 578 | self._set_main_color() |
| 579 | |
| 580 | def pytest_internalerror(self, excrepr: ExceptionRepr) -> bool: |
| 581 | for line in str(excrepr).split("\n"): |
| 582 | self.write_line("INTERNALERROR> " + line) |
| 583 | return True |
| 584 | |
| 585 | def pytest_warning_recorded( |
| 586 | self, |