From 49ce86538e2a7e55635d7f0dfbd8d42b059e40de Mon Sep 17 00:00:00 2001 From: Rob Cresswell Date: Tue, 12 Jan 2016 18:43:13 +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. Change-Id: I0534746360266e4a99e014d69ac19ab2d5b44a83 Partially-Implements: blueprint drop-dj17 --- tox.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tox.ini b/tox.ini index ae3015720..23ad384b6 100644 --- a/tox.ini +++ b/tox.ini @@ -87,6 +87,10 @@ basepython = python2.7 commands = pip install django>=1.8,<1.9 /bin/bash run_tests.sh -N --no-pep8 {posargs} +[testenv:py27dj19] +commands = pip install django>=1.9,<1.10 + /bin/bash run_tests.sh -N --no-pep8 {posargs} + [testenv:py27integration] basepython = python2.7 commands = /bin/bash run_tests.sh -N --integration --selenium-headless {posargs}