aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorTom Christie2012-08-29 21:37:12 +0100
committerTom Christie2012-08-29 21:37:12 +0100
commitf95da04f1b7b4b8584c4e7eaa85e9ec6a2c7b64d (patch)
tree2466b437f2c5f33185fef7555bf6f7be076e537a /.travis.yml
parent4c028445ebc88635da069827d39ae7746f42bf56 (diff)
downloaddjango-rest-framework-f95da04f1b7b4b8584c4e7eaa85e9ec6a2c7b64d.tar.bz2
Remove travis while in pre-release
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index ffd389e7..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-language: python
-
-python:
- - "2.6"
- - "2.7"
-
-env:
- - DJANGO=https://github.com/django/django/zipball/master TESTS='python setup.py test'
- - DJANGO=django==1.4.1 --use-mirrors TESTS='python setup.py test'
- - DJANGO=django==1.3.3 --use-mirrors TESTS='python setup.py test'
-
-# 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
-
-# command to run tests, e.g. python setup.py test
-script:
- - $TESTS