(argname, cases, scope="function")
| 300 | |
| 301 | |
| 302 | def variation_fixture(argname, cases, scope="function"): |
| 303 | return fixture( |
| 304 | params=Variation.generate_cases(argname, cases), |
| 305 | ids=Variation.idfn, |
| 306 | scope=scope, |
| 307 | ) |
| 308 | |
| 309 | |
| 310 | def fixture(*arg: Any, **kw: Any) -> Any: |
nothing calls this directly
no test coverage detected