Skip to content

Commit

Permalink
Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tomchristie committed Aug 25, 2012
1 parent 00d3aa2 commit 46ecf8d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
*~
.*

assetplatform.egg-info/*
coverage.xml
env
docs/build
Expand All @@ -18,3 +17,4 @@ djangorestframework.egg-info/*
MANIFEST

!.gitignore
!.travis.yml
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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

0 comments on commit 46ecf8d

Please sign in to comment.