(self, excrepr: ExceptionRepr)
| 463 | self._set_main_color() |
| 464 | |
| 465 | def pytest_internalerror(self, excrepr: ExceptionRepr) -> bool: |
| 466 | for line in str(excrepr).split("\n"): |
| 467 | self.write_line("INTERNALERROR> " + line) |
| 468 | return True |
| 469 | |
| 470 | def pytest_warning_recorded( |
| 471 | self, |