Add Python 3.5 to tox.ini, travis.yml

This commit is contained in:
Tim Heap 2015-09-16 13:50:12 +10:00
parent f79c108582
commit 17daa4112b
2 changed files with 10 additions and 1 deletions

View file

@ -19,6 +19,14 @@ matrix:
- env: TOXENV=py34-dj18-postgres
- env: TOXENV=py34-dj18-sqlite
- env: TOXENV=py34-dj18-mysql
- env: TOXENV=py35-dj18-postgres
python: 3.5
- env: TOXENV=py35-dj18-sqlite
python: 3.5
- env: TOXENV=py35-dj18-mysql
python: 3.5
allow_failures:
- python: 3.5
# Services
services:

View file

@ -2,7 +2,7 @@
skipsdist = True
usedevelop = True
envlist = py{27,33,34}-dj{17,18}-{sqlite,postgres,mysql}, flake8
envlist = py{27,33,34,35}-dj{17,18}-{sqlite,postgres,mysql}, flake8
[flake8]
ignore = E501,E128,E261,E302,E303,E124,E126
@ -15,6 +15,7 @@ basepython =
py27: python2.7
py33: python3.3
py34: python3.4
py35: python3.5
deps =
django-compressor>=1.4