Merge pull request #202 from frewsxcv/patch-1

Update Travis CI config to run on Python 3.5.
This commit is contained in:
mariodev 2016-06-27 20:22:04 +02:00 committed by GitHub
commit 2c4f7c2ec5

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: