(config: Config)
| 134 | |
| 135 | |
| 136 | def pytest_cmdline_main(config: Config) -> Optional[Union[int, ExitCode]]: |
| 137 | if config.option.showfixtures: |
| 138 | showfixtures(config) |
| 139 | return 0 |
| 140 | if config.option.show_fixtures_per_test: |
| 141 | show_fixtures_per_test(config) |
| 142 | return 0 |
| 143 | return None |
| 144 | |
| 145 | |
| 146 | def pytest_generate_tests(metafunc: "Metafunc") -> None: |
nothing calls this directly
no test coverage detected