django-rest-framework/.travis.yml
2012-08-23 22:26:51 +02:00

18 lines
402 B
YAML

language: python
python:
- "2.5"
- "2.6"
- "2.7"
env:
- DJANGO=dev
- DJANGO=1.4.1
- DJANGO=1.3.3
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install django==$DJANGO --use-mirrors
- 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