django-rest-auth/.travis.yml
2016-08-31 18:09:01 +02:00

22 lines
402 B
YAML

language: python
python:
- "2.7"
- "3.5"
env:
- DJANGO=1.8.13
- DJANGO=1.9.7
install:
- pip install -q Django==$DJANGO
- pip install coveralls
- pip install -r rest_auth/tests/requirements.pip
matrix:
exclude:
- python: "3.5"
env: DJANGO=1.8.13
script:
- coverage run --source=rest_auth setup.py test
after_success:
- coveralls
before_script:
- flake8 . --config=flake8