(
terminalreporter: TerminalReporter,
)
| 101 | |
| 102 | @pytest.hookimpl(wrapper=True) |
| 103 | def pytest_terminal_summary( |
| 104 | terminalreporter: TerminalReporter, |
| 105 | ) -> Generator[None]: |
| 106 | config = terminalreporter.config |
| 107 | with catch_warnings_for_item( |
| 108 | config=config, ihook=config.hook, when="config", item=None |
| 109 | ): |
| 110 | return (yield) |
| 111 | |
| 112 | |
| 113 | @pytest.hookimpl(wrapper=True) |
nothing calls this directly
no test coverage detected