django-rest-auth/.travis.yml

22 lines
402 B
YAML
Raw Normal View History

2014-05-02 00:56:10 +04:00
language: python
python:
- "2.7"
- "3.5"
2014-05-02 00:56:10 +04:00
env:
2016-07-18 08:20:02 +03:00
- DJANGO=1.8.13
- DJANGO=1.9.7
2014-05-02 00:56:10 +04:00
install:
2016-08-31 19:09:01 +03:00
- pip install -q Django==$DJANGO
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
matrix:
exclude:
- python: "3.5"
2016-07-18 08:20:02 +03:00
env: DJANGO=1.8.13
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