summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 189db56d17faf986ecd25fb37b3374e6eb13d375 (plain)
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
76
77
78
79
80
81
82
83
84
85
[tox]
minversion = 1.4
envlist = py27,py27_old,py27_patch,py33,py3_patch,py3_old,py34,py35

[testenv]
commands=
    python runtests.py -r
    python run_aiotest.py -r

[testenv:py27]
setenv =
   TROLLIUSDEBUG = 1
deps=
    aiotest
    eventlet
    mock
    trollius

[testenv:py27_old]
basepython = python2.7
setenv =
   TROLLIUSDEBUG = 1
deps=
    aiotest
    eventlet==0.14.0
    mock
    trollius==0.3

[testenv:py27_patch]
basepython = python2.7
setenv =
   TROLLIUSDEBUG = 1
deps=
    aiotest
    eventlet
    mock
    trollius
commands=
    python runtests.py -r -m
    python run_aiotest.py -r -m

[testenv:py33]
setenv =
   PYTHONASYNCIODEBUG = 1
deps=
    aiotest
    asyncio
    eventlet

[testenv:py3_patch]
basepython = python3
setenv =
   PYTHONASYNCIODEBUG = 1
deps=
    aiotest
    asyncio
    eventlet
commands=
    python runtests.py -r -m
    python run_aiotest.py -r -m

[testenv:py3_old]
basepython = python3
setenv =
   PYTHONASYNCIODEBUG = 1
deps=
    aiotest
    asyncio==0.4.1
    eventlet==0.15.0

[testenv:py34]
basepython = python3.4
setenv =
   PYTHONASYNCIODEBUG = 1
deps=
    aiotest
    eventlet

[testenv:py35]
basepython = python3.5
setenv =
   PYTHONASYNCIODEBUG = 1
deps=
    aiotest
    eventlet