(self)
| 508 | |
| 509 | @hookimpl(tryfirst=True) |
| 510 | def pytest_collectstart(self) -> None: |
| 511 | if self.shouldfail: |
| 512 | raise self.Failed(self.shouldfail) |
| 513 | if self.shouldstop: |
| 514 | raise self.Interrupted(self.shouldstop) |
| 515 | |
| 516 | @hookimpl(tryfirst=True) |
| 517 | def pytest_runtest_logreport( |