(config: Config)
| 535 | |
| 536 | |
| 537 | def pytest_cmdline_main(config: Config) -> int | ExitCode | None: |
| 538 | if config.option.cacheshow and not config.option.help: |
| 539 | from _pytest.main import wrap_session |
| 540 | |
| 541 | return wrap_session(config, cacheshow) |
| 542 | return None |
| 543 | |
| 544 | |
| 545 | @hookimpl(tryfirst=True) |
nothing calls this directly
no test coverage detected