summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-21 14:44:08 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-11-21 14:44:08 +0100
commit24e7843b14144703f45a5f40dec45e00b7b8381d (patch)
tree5a4f0c60c96a53770f3b43cac8b6b53679f3b7f3
parent4924c1d54108f833b4c498fa2e09412ffad0a626 (diff)
downloadaioeventlet-24e7843b14144703f45a5f40dec45e00b7b8381d.tar.gz
tox: add py27_old and py33_old0.2
-rw-r--r--doc/using.rst4
-rw-r--r--tox.ini20
2 files changed, 23 insertions, 1 deletions
diff --git a/doc/using.rst b/doc/using.rst
index 1783b69..25687c6 100644
--- a/doc/using.rst
+++ b/doc/using.rst
@@ -251,8 +251,12 @@ To run tests against other Python versions:
* ``py26``: Python 2.6
* ``py27``: Python 2.7
* ``py27_patch``: Python 2.7 with eventlet monkey patching
+* ``py27_old``: Python 2.7 with the oldest supported versions of eventlet and
+ trollius
* ``py32``: Python 3.2
* ``py33``: Python 3.3
+* ``py33_old``: Python 3.3 with the oldest supported versions of eventlet and
+ tulip
* ``py34``: Python 3.4
Run tests manually
diff --git a/tox.ini b/tox.ini
index 6b6f983..66d8393 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py26,py27,py27_patch,py32,py33,py34,py35
+envlist = py26,py27,py27_old,py27_patch,py32,py33,py33_old,py34,py35
[testenv:py26]
setenv =
@@ -18,6 +18,15 @@ deps=
trollius
commands=python runtests.py -r
+[testenv:py27_old]
+basepython = python2.7
+setenv =
+ TROLLIUSDEBUG = 1
+deps=
+ eventlet==0.14.0
+ trollius==0.3
+commands=python runtests.py -r
+
[testenv:py27_patch]
basepython = python2.7
setenv =
@@ -43,6 +52,15 @@ deps=
eventlet
commands=python runtests.py -r
+[testenv:py33_old]
+basepython = python3.3
+setenv =
+ PYTHONASYNCIODEBUG = 1
+deps=
+ asyncio==0.4.1
+ eventlet==0.15.0
+commands=python runtests.py -r
+
[testenv:py34]
setenv =
PYTHONASYNCIODEBUG = 1