(self)
| 653 | |
| 654 | @hookimpl(hookwrapper=True, tryfirst=True) |
| 655 | def pytest_sessionstart(self) -> Generator[None, None, None]: |
| 656 | self.log_cli_handler.set_when("sessionstart") |
| 657 | |
| 658 | with catching_logs(self.log_cli_handler, level=self.log_cli_level): |
| 659 | with catching_logs(self.log_file_handler, level=self.log_file_level): |
| 660 | yield |
| 661 | |
| 662 | @hookimpl(hookwrapper=True, tryfirst=True) |
| 663 | def pytest_collection(self) -> Generator[None, None, None]: |
nothing calls this directly
no test coverage detected