(self)
| 737 | |
| 738 | @hookimpl(hookwrapper=True, tryfirst=True) |
| 739 | def pytest_sessionfinish(self) -> Generator[None, None, None]: |
| 740 | self.log_cli_handler.set_when("sessionfinish") |
| 741 | |
| 742 | with catching_logs(self.log_cli_handler, level=self.log_cli_level): |
| 743 | with catching_logs(self.log_file_handler, level=self.log_file_level): |
| 744 | yield |
| 745 | |
| 746 | @hookimpl |
| 747 | def pytest_unconfigure(self) -> None: |
nothing calls this directly
no test coverage detected