(metafunc)
| 4 | |
| 5 | |
| 6 | def pytest_generate_tests(metafunc): |
| 7 | if "pytest_params" in metafunc.fixturenames: |
| 8 | parametrizations = [ |
| 9 | pytest.param([], id="no-import-mode"), |
| 10 | pytest.param(["--import-mode=prepend"], id="--import-mode=prepend"), |
| 11 | pytest.param(["--import-mode=append"], id="--import-mode=append"), |
| 12 | pytest.param(["--import-mode=importlib"], id="--import-mode=importlib"), |
| 13 | ] |
| 14 | metafunc.parametrize("pytest_params", parametrizations) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…