Commit 46ecf8d8 by Tom Christie

Travis CI

parent 00d3aa21
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
*~ *~
.* .*
assetplatform.egg-info/*
coverage.xml coverage.xml
env env
docs/build docs/build
...@@ -18,3 +17,4 @@ djangorestframework.egg-info/* ...@@ -18,3 +17,4 @@ djangorestframework.egg-info/*
MANIFEST MANIFEST
!.gitignore !.gitignore
!.travis.yml
language: python
python:
- "2.5"
- "2.6"
- "2.7"
env:
- DJANGO=https://github.com/django/django/zipball/master TESTS='python setup.py test'
- DJANGO=https://github.com/django/django/zipball/master TESTS='python examples/runtests.py'
- DJANGO=django==1.4.1 --use-mirrors TESTS='python setup.py test'
- DJANGO=django==1.4.1 --use-mirrors TESTS='python examples/runtests.py'
- DJANGO=django==1.3.3 --use-mirrors TESTS='python setup.py test'
- DJANGO=django==1.3.3 --use-mirrors 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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment