django-rest-auth/.travis.yml
2016-02-23 10:30:25 +00:00

18 lines
359 B
YAML

language: python
python:
- "2.7"
env:
- DJANGO=1.7.11
- DJANGO=1.8.9
- DJANGO=1.9.2
install:
- pip install -q Django==$DJANGO --use-mirrors
- 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