1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
[tox]
envlist = 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t, pypy-3.8, pypy-3.9, pypy-3.10
[testenv]
commands =
pytest {posargs}
extras =
test
[testenv:3.8]
basepython = python3.8
[testenv:3.9]
basepython = python3.9
[testenv:3.10]
basepython = python3.10
[testenv:3.11]
basepython = python3.11
[testenv:3.12]
basepython = python3.12
[testenv:3.13]
basepython = python3.13
[testenv:3.13t]
basepython = python3.13t
[testenv:pypy-3.8]
basepython = pypy3.8
[testenv:pypy-3.9]
basepython = pypy3.9
[testenv:pypy-3.10]
basepython = pypy3.10
[testenv:xcode]
basepython = {env:XCODE_PYTHON}
|