(self, excrepr: ExceptionRepr)
| 633 | reporter.append_collect_skipped(report) |
| 634 | |
| 635 | def pytest_internalerror(self, excrepr: ExceptionRepr) -> None: |
| 636 | reporter = self.node_reporter("internal") |
| 637 | reporter.attrs.update(classname="pytest", name="internal") |
| 638 | reporter._add_simple("error", "internal error", str(excrepr)) |
| 639 | |
| 640 | def pytest_sessionstart(self) -> None: |
| 641 | self.suite_start_time = timing.time() |
no test coverage detected