travis: updated django version and added python 3.5

This commit is contained in:
Henning dickten 2015-12-28 20:55:37 +01:00
parent 96fec52cf3
commit e19f2f44e6

View File

@ -4,6 +4,7 @@ python:
- "pypy" - "pypy"
- "3.3" - "3.3"
- "3.4" - "3.4"
- "3.5"
env: env:
global: global:
- SECRET_KEY=justfortravis - SECRET_KEY=justfortravis
@ -13,14 +14,14 @@ env:
- TEST_OPTS="" - TEST_OPTS=""
- COVERAGE="" - COVERAGE=""
matrix: matrix:
- DJANGO=1.7.1 - DJANGO=1.8.1
matrix: matrix:
exclude: exclude:
- python: "2.7" - python: "2.7"
env: DJANGO=1.7.1 env: DJANGO=1.8.1
include: include:
- python: "2.7" - python: "2.7"
env: DJANGO=1.7.1 COVERAGE="coverage run -m" TEST_K="" TEST_OPTS="--pep8" env: DJANGO=1.8.1 COVERAGE="coverage run -m" TEST_K="" TEST_OPTS="--pep8"
install: install:
- "pip install --use-mirrors Django==$DJANGO" - "pip install --use-mirrors Django==$DJANGO"
- "pip install --use-mirrors -r requirements.d/travis.txt" - "pip install --use-mirrors -r requirements.d/travis.txt"