-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathtox.ini
More file actions
48 lines (37 loc) · 824 Bytes
/
Copy pathtox.ini
File metadata and controls
48 lines (37 loc) · 824 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
[tox]
envlist = python26,python27,python33,python34,python35,python36,python37,python38,pypy,pypy3
[testenv]
deps =
pytest==4.5.0
sh==1.12.14
pyyaml==5.1
commands =
pytest {posargs:test}
[testenv:python26]
basepython = /usr/bin/python2.6
deps =
pytest==3.2.5
sh==1.12.14
pyyaml==3.13
[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:pypy]
basepython = /usr/bin/pypy
[testenv:pypy3]
basepython = /usr/bin/pypy3