aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2012-09-07 13:32:52 +0100
committerTom Christie2012-09-07 13:32:52 +0100
commit07323d4cd639643d170a47fa6deaab7382f9568a (patch)
treec4add0f5bc8cf814df9f3b631eedee200f34241a
parent1608583eaa5201340c554a767e8e48eecabe1f39 (diff)
downloaddjango-rest-framework-07323d4cd639643d170a47fa6deaab7382f9568a.tar.bz2
Add travis config
-rw-r--r--.travis.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..95de9493
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,18 @@
+language: python
+
+python:
+ - "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
+
+install:
+ - pip install $DJANGO
+ - pip install -e . --use-mirrors
+ - pip install -r requirements.txt
+
+script:
+ - python setup.py test