From 658d955c1b94057f9f3d19640ec98289ee6df968 Mon Sep 17 00:00:00 2001 From: Rob Cresswell Date: Mon, 11 Jan 2016 14:20:56 +0000 Subject: [PATCH] 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 --- tox.ini | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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}