django-rest-auth/.travis.yml
2016-12-31 12:59:49 -08:00

19 lines
357 B
YAML

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