remove django<1.7 from tests

Django_openstack_auth is moving to Django-1.8, Django < 1.7 is
not supported any more by upstream.

Added tox sections to gate on django-1.7 and 1.8
(to be configured in project config)

remove python33 tests, to.

Partly Implements: blueprint django18

Depends-On: I73e1f52465545888f70a6e398511c84f04bb7bf7
Change-Id: I4c417a058b5d9e419703099dd7e0df865dad2606
This commit is contained in:
Matthias Runge 2015-07-13 12:13:33 +02:00
parent a336dbd707
commit ee6165fb04

11
tox.ini
View File

@ -1,5 +1,5 @@
[tox]
envlist = py27,py27dj14,py27dj15,pep8,py33,py34
envlist = py27,py27dj17,py27dj18,pep8,py34
minversion = 1.6
skipsdist = True
@ -30,14 +30,15 @@ commands = {posargs}
[testenv:cover]
commands = /bin/bash run_tests.sh -N --no-pep8 --coverage {posargs}
[testenv:py27dj14]
[testenv:py27dj17]
basepython = python2.7
commands = pip install django>=1.4,<1.5
commands = pip install django>=1.7,<1.8
/bin/bash run_tests.sh -N --no-pep8 {posargs}
[testenv:py27dj15]
# Django-1.8 is LTS
[testenv:py27dj18]
basepython = python2.7
commands = pip install django>=1.5,<1.6
commands = pip install django>=1.8,<1.9
/bin/bash run_tests.sh -N --no-pep8 {posargs}
[testenv:py27integration]