We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d7f30f commit 5ff8bb4Copy full SHA for 5ff8bb4
tests/conftest.py
@@ -14,4 +14,5 @@ def python_version(request):
14
15
@pytest.fixture
16
def default_answers(python_version):
17
- return {"python_versions": [python_version]}
+ highest_version_index = PYTHON_VERSIONS.index(python_version)
18
+ return {"python_versions": PYTHON_VERSIONS[0 : (highest_version_index + 1)]}
0 commit comments