mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-10 19:26:35 +03:00
19 lines
357 B
YAML
19 lines
357 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
env:
|
|
- DJANGO=1.8.18
|
|
- DJANGO=1.10.7
|
|
- DJANGO=1.11.1
|
|
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
|