summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini6
1 files changed, 5 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 2745e72..2573302 100644
--- a/tox.ini
+++ b/tox.ini
@@ -28,15 +28,19 @@ commands =
commands = pip install django>=1.7,<1.8
python openstack_auth/tests/run_tests.py {posargs}
+# Django 1.8 is LTS
[testenv:py27dj18]
commands = pip install django>=1.8,<1.9
python openstack_auth/tests/run_tests.py {posargs}
+[testenv:py27dj19]
+commands = pip install django>=1.9,<1.10
+ python openstack_auth/tests/run_tests.py {posargs}
+
[testenv:pep8]
setenv = DJANGO_SETTINGS_MODULE=openstack_auth.tests.settings
commands = flake8
-
[testenv:venv]
commands = {posargs}