(self)
| 689 | |
| 690 | @hookimpl(tryfirst=True) |
| 691 | def pytest_collectstart(self) -> None: |
| 692 | if self.shouldfail: |
| 693 | raise self.Failed(self.shouldfail) |
| 694 | if self.shouldstop: |
| 695 | raise self.Interrupted(self.shouldstop) |
| 696 | |
| 697 | @hookimpl(tryfirst=True) |
| 698 | def pytest_runtest_logreport(self, report: TestReport | CollectReport) -> None: |