mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-13 04:36:35 +03:00
19 lines
412 B
YAML
19 lines
412 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
env:
|
|
- DJANGO=1.8.* DRF=3.6.*
|
|
- DJANGO=1.10.* DRF=3.7.*
|
|
- DJANGO=1.11.* DRF=3.7.*
|
|
install:
|
|
- pip install -q Django==$DJANGO djangorestframework==$DRF
|
|
- 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
|