(
early_config: Config,
)
| 121 | |
| 122 | @pytest.hookimpl(wrapper=True) |
| 123 | def pytest_load_initial_conftests( |
| 124 | early_config: Config, |
| 125 | ) -> Generator[None]: |
| 126 | with catch_warnings_for_item( |
| 127 | config=early_config, ihook=early_config.hook, when="config", item=None |
| 128 | ): |
| 129 | return (yield) |
| 130 | |
| 131 | |
| 132 | def pytest_configure(config: Config) -> None: |
nothing calls this directly
no test coverage detected