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
This commit is contained in:
Zhenguo Niu 2016-12-23 13:29:39 +08:00
parent 58739a8b4d
commit 55425db080
1 changed files with 1 additions and 16 deletions

17
tox.ini
View File

@ -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}'