summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Cresswell <robert.cresswell@outlook.com>2016-01-11 14:20:56 +0000
committerRob Cresswell <robert.cresswell@outlook.com>2016-01-11 14:38:25 +0000
commit658d955c1b94057f9f3d19640ec98289ee6df968 (patch)
treedb25c46d92e212af8289e9acb5b452e8da0c5630
parente034ced622b9a6b1ba49fb58a76ee711dc6787e4 (diff)
downloaddjango_openstack_auth-658d955c1b94057f9f3d19640ec98289ee6df968.tar.gz
Add py27dj19 tox env
This adds a failing Django 1.9 tox env. This will be followed by a non-voting Jenkins job to show the tests failing, and then a follow up patch to make them pass. Also removes an extra blank line. Change-Id: Ib1633fb90a3a1f2e064b9f8a3fa37d76c63650be
-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}