django-rest-framework/.travis.yml

18 lines
469 B
YAML

language: python
python:
- "2.5"
- "2.6"
- "2.7"
env:
- DJANGO=https://github.com/django/django/zipball/master
- DJANGO=django==1.4.1 --use-mirrors
- DJANGO=django==1.3.3 --use-mirrors
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install $DJANGO
- pip install -e . --use-mirrors
- pip install -r requirements.txt
# command to run tests, e.g. python setup.py test
script: python setup.py test