django-rest-framework/.travis.yml
Marko Tibold af7214f86a whoops.
2012-08-23 23:16:51 +02:00

21 lines
569 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
- TESTS=python setup.py test
- TESTS=python examples/runtests.py
# 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
- pip install -r examples/requirements.txt
# command to run tests, e.g. python setup.py test
script: $TESTS