(config: Config)
| 492 | |
| 493 | |
| 494 | def pytest_cmdline_main(config: Config) -> Optional[Union[int, ExitCode]]: |
| 495 | if config.option.cacheshow: |
| 496 | from _pytest.main import wrap_session |
| 497 | |
| 498 | return wrap_session(config, cacheshow) |
| 499 | return None |
| 500 | |
| 501 | |
| 502 | @hookimpl(tryfirst=True) |
nothing calls this directly
no test coverage detected