(config: Config)
| 650 | # run after terminalreporter/capturemanager are configured |
| 651 | @hookimpl(trylast=True) |
| 652 | def pytest_configure(config: Config) -> None: |
| 653 | config.pluginmanager.register(LoggingPlugin(config), "logging-plugin") |
| 654 | |
| 655 | |
| 656 | class LoggingPlugin: |
nothing calls this directly
no test coverage detected