-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathtox-windows.ini
More file actions
39 lines (28 loc) · 685 Bytes
/
tox-windows.ini
File metadata and controls
39 lines (28 loc) · 685 Bytes
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
[tox]
envlist = 2.7,3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13,3.14
[testenv]
deps = -r{toxinidir}/tox/python{envname}-windows-requirements.txt
commands =
pytest {posargs:test} --junitxml=junit-python{envname}.xml --verbose
[testenv:2.7]
basepython = python2.7
[testenv:3.6]
basepython = python3.6
[testenv:3.7]
basepython = python3.7
[testenv:3.8]
basepython = python3.8
[testenv:3.9]
basepython = python3.9
[testenv:3.10]
basepython = python3.10
setenv =
PIP_CONSTRAINT={toxinidir}/tox/pyyaml-5.4.1-constraints.txt
[testenv:3.11]
basepython = python3.11
[testenv:3.12]
basepython = python3.12
[testenv:3.13]
basepython = python3.13
[testenv:3.14]
basepython = python3.14