mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-11 03:36:35 +03:00
26 lines
479 B
YAML
26 lines
479 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
env:
|
|
- DJANGO=1.5.12
|
|
- DJANGO=1.6.11
|
|
- DJANGO=1.7.7
|
|
- DJANGO=1.8
|
|
matrix:
|
|
exclude:
|
|
- python: "2.6"
|
|
env: DJANGO=1.7.7
|
|
- python: "2.6"
|
|
env: DJANGO=1.8
|
|
install:
|
|
- pip install -q Django==$DJANGO --use-mirrors
|
|
- pip install coveralls
|
|
- pip install -r test_requirements.pip
|
|
script:
|
|
- coverage run --source=rest_auth setup.py test
|
|
after_success:
|
|
- coveralls
|
|
before_script:
|
|
- flake8 . --config=flake8
|