summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 229b13cb3eb04c11c0952921a216683baf6f44af (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
[tox]
envlist = py26,py27,py2_release,py32,py33,py34,py3_release

[testenv]
deps=
    aiotest
setenv =
    TROLLIUSDEBUG = 1
commands=
    python runtests.py -r {posargs}
    python run_aiotest.py -r {posargs}

[testenv:py26]
deps=
    aiotest
    futures
    mock
    ordereddict
    unittest2

[testenv:py27]
deps=
    aiotest
    futures
    mock

[testenv:py2_release]
# Run tests in release mode
deps=
    aiotest
    futures
    mock
setenv =
    TROLLIUSDEBUG =
basepython = python2.7

[testenv:py32]
deps=
    aiotest
    mock

[testenv:py35]
basepython = python3.5

[testenv:py3_release]
# Run tests in release mode
setenv =
    TROLLIUSDEBUG =
basepython = python3