(request)
| 55 | |
| 56 | @pytest.fixture |
| 57 | def selected_models(request): |
| 58 | cli_value = request.config.getoption("--models") |
| 59 | if cli_value == "all": |
| 60 | return get_all_models_from_config() |
| 61 | return [m.strip() for m in cli_value.split(",")] |
| 62 | |
| 63 | |
| 64 | def pytest_generate_tests(metafunc): |
nothing calls this directly
no test coverage detected