MCPcopy Create free account
hub / github.com/bloomberg/pystack / all_pythons_since

Function all_pythons_since

tests/utils.py:317–330  ·  view source on GitHub ↗
(major: int, minor: int)

Source from the content-addressed store, hash-verified

315
316
317def 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 )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected