-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
59 lines (49 loc) · 941 Bytes
/
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
[tox]
envlist =
# Python 2.7
py27-tornado322, py27-tornado452,
# Python 3.6
py36-tornado322, py36-tornado452,
# pypy
pypy-tornado322, pypy-tornado452
[testenv]
commands = ./runtests
deps =
optfn==0.4.2
redis==2.10.6
sqlalchemy==1.1.14
catnap==0.4.5
[testenv:py27]
deps =
{[testenv]deps}
pysqlite==2.8.3
[testenv:py27-tornado322]
basepython = python2.7
deps =
{[testenv:py27]deps}
tornado==3.2.2
[testenv:py27-tornado452]
basepython = python2.7
deps =
{[testenv:py27]deps}
tornado==4.5.2
[testenv:py36-tornado322]
basepython = python3.6
deps =
{[testenv]deps}
tornado==3.2.2
[testenv:py36-tornado452]
basepython = python3.6
deps =
{[testenv]deps}
tornado==4.5.2
[testenv:pypy-tornado322]
basepython = pypy
deps =
{[testenv:py27]deps}
tornado==3.2.2
[testenv:pypy-tornado452]
basepython = pypy
deps =
{[testenv:py27]deps}
tornado==4.5.2