From 55425db080f1289b02a94358bc480487c98eb977 Mon Sep 17 00:00:00 2001 From: Zhenguo Niu Date: Fri, 23 Dec 2016 13:29:39 +0800 Subject: [PATCH] Remove django<1.8 from tests Django < 1.8 is not supported any more by upstream, and Horizon has dropped django 1.7 and lower version support, so we don't need to keep them here. Change-Id: Ic4c1500c3403652f5e0936d81ad2797f1ab4b368 --- tox.ini | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/tox.ini b/tox.ini index 5384dd6..4fc748f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = pep8,py27,py27dj14,py27dj15,py27dj16 +envlist = pep8,py27 skipsdist = True [testenv] @@ -24,21 +24,6 @@ commands = flake8 [testenv:venv] commands = {posargs} -[testenv:py27dj14] -basepython = python2.7 -commands = pip install django>=1.4,<1.5 - /bin/bash run_tests.sh -N --no-pep8 {posargs} - -[testenv:py27dj15] -basepython = python2.7 -commands = pip install django>=1.5,<1.6 - /bin/bash run_tests.sh -N --no-pep8 {posargs} - -[testenv:py27dj16] -basepython = python2.7 -commands = pip install django>=1.6,<1.7 - /bin/bash run_tests.sh -N --no-pep8 {posargs} - [testenv:cover] commands = python setup.py testr --coverage --testr-args='{posargs}'