django-rest-auth/.travis.yml

20 lines
332 B
YAML
Raw Normal View History

2014-05-02 00:56:10 +04:00
language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=1.5.10
- DJANGO=1.6.7
- DJANGO=1.7
2014-10-02 15:14:09 +04:00
matrix:
exclude:
- python: "2.6"
env: DJANGO=1.7
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
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