(self)
| 881 | |
| 882 | @hookimpl(wrapper=True, tryfirst=True) |
| 883 | def pytest_sessionfinish(self) -> Generator[None]: |
| 884 | self.log_cli_handler.set_when("sessionfinish") |
| 885 | |
| 886 | with catching_logs(self.log_cli_handler, level=self.log_cli_level): |
| 887 | with catching_logs(self.log_file_handler, level=self.log_file_level): |
| 888 | return (yield) |
| 889 | |
| 890 | @hookimpl |
| 891 | def pytest_unconfigure(self) -> None: |
nothing calls this directly
no test coverage detected