(self)
| 796 | |
| 797 | @hookimpl(wrapper=True, tryfirst=True) |
| 798 | def pytest_collection(self) -> Generator[None]: |
| 799 | self.log_cli_handler.set_when("collection") |
| 800 | |
| 801 | with catching_logs(self.log_cli_handler, level=self.log_cli_level): |
| 802 | with catching_logs(self.log_file_handler, level=self.log_file_level): |
| 803 | return (yield) |
| 804 | |
| 805 | @hookimpl(wrapper=True) |
| 806 | def pytest_runtestloop(self, session: Session) -> Generator[None, object, object]: |
no test coverage detected