Merge "Remove django<1.8 from tests"

This commit is contained in:
Jenkins 2017-01-08 15:55:59 +00:00 committed by Gerrit Code Review
commit 3254802ee2
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]
@ -25,21 +25,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}'