-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtox.ini
75 lines (53 loc) · 1.1 KB
/
tox.ini
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tox]
envlist = py27,py33,py34,py35,py36,py27-deps,py33-deps,py34-deps,py35-deps,py36-deps,py27-t3,py33-t3,py34-t3
[testenv]
passenv = TRAVIS
setenv =
PYTHONHASHSEED = random
deps =
tornado
pyuv
commands = python -X faulthandler -m tornado.test.runtests --ioloop='tornaduv.UVLoop' {posargs}
[testenv:py27]
commands = python -m tornado.test.runtests --ioloop='tornaduv.UVLoop' {posargs}
[testenv:py27-deps]
deps =
{[testenv]deps}
mock
pycurl
futures
# pycares
commands = python -m tornado.test.runtests --ioloop='tornaduv.UVLoop' {posargs}
[testenv:py33-deps]
deps =
{[testenv]deps}
pycurl
# pycares
[testenv:py34-deps]
deps =
{[testenv]deps}
pycurl
# pycares
[testenv:py35-deps]
deps =
{[testenv]deps}
pycurl
# pycares
[testenv:py36-deps]
deps =
{[testenv]deps}
pycurl
# pycares
[testenv:py27-t3]
deps =
tornado>=3.0,<4.0
pyuv
commands = python -m tornado.test.runtests --ioloop='tornaduv.UVLoop' {posargs}
[testenv:py33-t3]
deps =
tornado>=3.0,<4.0
pyuv
[testenv:py34-t3]
deps =
tornado>=3.0,<4.0
pyuv