(self)
| 745 | |
| 746 | @hookimpl |
| 747 | def pytest_unconfigure(self) -> None: |
| 748 | # Close the FileHandler explicitly. |
| 749 | # (logging.shutdown might have lost the weakref?!) |
| 750 | self.log_file_handler.close() |
| 751 | |
| 752 | |
| 753 | class _FileHandler(logging.FileHandler): |
no test coverage detected