Update Travis CI config to run on Python 3.5.

This commit is contained in:
Corey Farwell 2016-04-11 14:18:27 -04:00
parent 3189a5c7a0
commit 8ffb292b70

View File

@ -1,6 +1,7 @@
language: python language: python
python: python:
- "2.7" - "2.7"
- "3.5"
env: env:
- DJANGO=1.7.11 - DJANGO=1.7.11
- DJANGO=1.8.9 - DJANGO=1.8.9
@ -9,6 +10,10 @@ install:
- pip install -q Django==$DJANGO --use-mirrors - pip install -q Django==$DJANGO --use-mirrors
- pip install coveralls - pip install coveralls
- pip install -r rest_auth/tests/requirements.pip - pip install -r rest_auth/tests/requirements.pip
matrix:
exclude:
- python: "3.5"
env: DJANGO=1.7.11
script: script:
- coverage run --source=rest_auth setup.py test - coverage run --source=rest_auth setup.py test
after_success: after_success: