(config: Config)
| 1602 | |
| 1603 | |
| 1604 | def pytest_cmdline_main(config: Config) -> int | ExitCode | None: |
| 1605 | if config.option.showfixtures: |
| 1606 | showfixtures(config) |
| 1607 | return 0 |
| 1608 | if config.option.show_fixtures_per_test: |
| 1609 | show_fixtures_per_test(config) |
| 1610 | return 0 |
| 1611 | return None |
| 1612 | |
| 1613 | |
| 1614 | def _resolve_args_directness( |
nothing calls this directly
no test coverage detected