(session: Session)
| 112 | |
| 113 | @pytest.hookimpl(wrapper=True) |
| 114 | def pytest_sessionfinish(session: Session) -> Generator[None]: |
| 115 | config = session.config |
| 116 | with catch_warnings_for_item( |
| 117 | config=config, ihook=config.hook, when="config", item=None |
| 118 | ): |
| 119 | return (yield) |
| 120 | |
| 121 | |
| 122 | @pytest.hookimpl(wrapper=True) |
nothing calls this directly
no test coverage detected