django-rest-framework/.travis.yml

18 lines
402 B
YAML
Raw Normal View History

2012-08-24 00:04:25 +04:00
language: python
python:
- "2.5"
- "2.6"
- "2.7"
2012-08-24 00:26:51 +04:00
env:
- DJANGO=dev
- DJANGO=1.4.1
- DJANGO=1.3.3
2012-08-24 00:04:25 +04:00
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
2012-08-24 00:26:51 +04:00
install:
- pip install django==$DJANGO --use-mirrors
- pip install -e . --use-mirrors
- pip install -r requirements.txt
2012-08-24 00:04:25 +04:00
# command to run tests, e.g. python setup.py test
script: python setup.py test