summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-09 16:04:19 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-01-09 16:04:19 +0100
commitb7bfe0074d8431459e72bbd7dcfb71206714bdfd (patch)
tree0f3b91c3565dd240ebc4c645454017c9723ea02e /tox.ini
parent5473e038528e3b29db2dfc2b30370abc17ee1843 (diff)
downloadtrollius-b7bfe0074d8431459e72bbd7dcfb71206714bdfd.tar.gz
tox.ini: add py3_release env to run tests in release mode
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 7 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 37a1fe4..192a0b9 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py33,py34,py35
+envlist = py33,py34,py3_release
[testenv]
deps=
@@ -10,5 +10,11 @@ commands=
python runtests.py -r {posargs}
python run_aiotest.py -r {posargs}
+[testenv:py3_release]
+# Run tests in debug mode
+setenv =
+ PYTHONASYNCIODEBUG =
+basepython = python3
+
[testenv:py35]
basepython = python3.5