forked from dflook/python-minifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
53 lines (41 loc) · 957 Bytes
/
Copy pathtox.ini
File metadata and controls
53 lines (41 loc) · 957 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tox]
envlist = python27,python33,python34,python35,python36,python37,python38,python39,pypy,pypy3
[testenv]
deps =
pytest==4.5.0
attrs==20.3.0
sh==1.12.14
pyyaml==5.1
commands =
pytest {posargs:test} --junitxml=junit-{envname}.xml
[testenv:python27]
basepython = /usr/bin/python2.7
[testenv:python33]
basepython = /usr/bin/python3.3
deps =
pytest==3.2.5
sh==1.12.14
pyyaml==3.13
[testenv:python34]
basepython = /usr/bin/python3.4
[testenv:python35]
basepython = /usr/bin/python3.5
[testenv:python36]
basepython = /usr/bin/python3.6
[testenv:python37]
basepython = /usr/bin/python3.7
[testenv:python38]
basepython = /usr/bin/python3.8
[testenv:python39]
basepython = /usr/local/bin/python3.9
[testenv:python310]
basepython = /usr/local/bin/python3.10
deps =
pytest==6.2.4
sh==1.14.2
pyyaml==5.4.1
pyperf==2.2.0
[testenv:pypy]
basepython = /usr/bin/pypy
[testenv:pypy3]
basepython = /usr/bin/pypy3