From 92b4e6600856ff8703de20be19af521a5b8dd0c2 Mon Sep 17 00:00:00 2001 From: Vitaly Gridnev Date: Thu, 24 Mar 2016 23:23:07 +0300 Subject: [PATCH] Add Django 1.9 testenv Added django 1.9 testenv and also drop django 1.7 (since it's no longer in global requirements) Change-Id: Ifcc98454b1ecff2e230575e710e4237f360583d8 --- tox.ini | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index a4c4137c..bc3e4eeb 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py27,pep8,py27dj17 +envlist = py27,pep8,py27dj18 skipsdist = True [testenv] @@ -22,17 +22,17 @@ commands = flake8 [testenv:venv] commands = {posargs} -[testenv:py27dj17] -basepython = python2.7 -commands = pip install django>=1.7,<1.8 - /bin/bash run_tests.sh -N --no-pep8 {posargs} - # Django-1.8 is LTS [testenv:py27dj18] basepython = python2.7 commands = pip install django>=1.8,<1.9 /bin/bash run_tests.sh -N --no-pep8 {posargs} +[testenv:py27dj19] +basepython = python2.7 +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}