blob: 3030441f97f7c43cbc949437301970c4c1cffeab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[tox]
envlist = py33,py34,py3_release
[testenv]
deps=
aiotest
# Run tests in debug mode
setenv =
PYTHONASYNCIODEBUG = 1
commands=
python -Wd runtests.py -r {posargs}
python -Wd run_aiotest.py -r {posargs}
[testenv:py3_release]
# Run tests in release mode
setenv =
PYTHONASYNCIODEBUG =
basepython = python3
[testenv:py35]
basepython = python3.5
|