(config: Config)
| 501 | |
| 502 | @hookimpl(tryfirst=True) |
| 503 | def pytest_configure(config: Config) -> None: |
| 504 | config.cache = Cache.for_config(config, _ispytest=True) |
| 505 | config.pluginmanager.register(LFPlugin(config), "lfplugin") |
| 506 | config.pluginmanager.register(NFPlugin(config), "nfplugin") |
| 507 | |
| 508 | |
| 509 | @fixture |
nothing calls this directly
no test coverage detected