(config: Config)
| 522 | # run after terminalreporter/capturemanager are configured |
| 523 | @hookimpl(trylast=True) |
| 524 | def pytest_configure(config: Config) -> None: |
| 525 | config.pluginmanager.register(LoggingPlugin(config), "logging-plugin") |
| 526 | |
| 527 | |
| 528 | class LoggingPlugin: |
nothing calls this directly
no test coverage detected