django-rest-auth/.travis.yml

18 lines
359 B
YAML
Raw Normal View History

2014-05-02 00:56:10 +04:00
language: python
python:
- "2.7"
env:
2016-02-23 13:30:25 +03:00
- DJANGO=1.7.11
- DJANGO=1.8.9
- DJANGO=1.9.2
2014-05-02 00:56:10 +04:00
install:
- pip install -q Django==$DJANGO --use-mirrors
2014-05-13 00:45:23 +04:00
- pip install coveralls
2015-12-04 11:43:17 +03:00
- pip install -r rest_auth/tests/requirements.pip
2014-05-02 00:56:10 +04:00
script:
2014-05-13 00:56:39 +04:00
- coverage run --source=rest_auth setup.py test
2014-05-13 00:45:23 +04:00
after_success:
- coveralls
2015-04-28 11:04:20 +03:00
before_script:
- flake8 . --config=flake8