Add py35 environment to tox/travisci

Django v1.7 is not compatible with Python v3.5 so it is not tested.
This commit is contained in:
John Kristensen 2016-04-13 17:02:05 +10:00 committed by John Kristensen
parent 32950bc655
commit 31632442bd
2 changed files with 6 additions and 1 deletions

View file

@ -2,10 +2,15 @@ language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=1.9
matrix:
exclude:
- python: "3.5"
env: DJANGO=1.7
install:
- pip install -q django==$DJANGO
- pip install -e .

View file

@ -1,7 +1,7 @@
[tox]
envlist=
clean,py{27,34}-django{17,18,19},stats
clean,py{27,34}-django{17,18,19},py35-django{18,19},stats
[testenv]