(major: int, minor: int)
| 315 | |
| 316 | |
| 317 | def all_pythons_since(major: int, minor: int): |
| 318 | return pytest.mark.parametrize( |
| 319 | "python", |
| 320 | [ |
| 321 | python[:2] |
| 322 | for python in AVAILABLE_PYTHONS |
| 323 | if python.version >= (major, minor) |
| 324 | ], |
| 325 | ids=[ |
| 326 | python[1].name |
| 327 | for python in AVAILABLE_PYTHONS |
| 328 | if python.version >= (major, minor) |
| 329 | ], |
| 330 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected