summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 12 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index b4c00d4..099d27b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -17,6 +17,18 @@ deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
+[testenv:sqla_09]
+commands = pip install SQLAlchemy>=0.9.0,!=0.9.5,<1.0.0
+ python setup.py testr --slowest --testr-args='{posargs}'
+
+[testenv:sqla_08]
+commands = pip install SQLAlchemy>=0.8.0,<0.9.0
+ python setup.py testr --slowest --testr-args='{posargs}'
+
+[testenv:sqla_07]
+commands = pip install SQLAlchemy>=0.7.7,<0.8.0
+ python setup.py testr --slowest --testr-args='{posargs}'
+
[testenv:pep8]
commands = flake8