aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMjumbe Wawatu Poe2012-03-15 18:17:25 -0400
committerBen Firshman2014-09-20 15:32:13 -0700
commit0451c3f39e3cde5e7921a67975f759b0f2b062a3 (patch)
tree4b544e69f43dc2294efc968aaa07a0d5620661c5
parent3043cf9efabfb521137a46e147fadc9176a81f23 (diff)
downloaddjango-shorturls-0451c3f39e3cde5e7921a67975f759b0f2b062a3.tar.bz2
Add a config file for Travis (see http://travis-ci.org)
-rw-r--r--.travis.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..a3c4df7
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,16 @@
+language: python
+python:
+ - "2.5"
+ - "2.6"
+ - "2.7"
+
+env:
+ - DJANGO="Django==1.2"
+ - DJANGO="Django==1.3"
+ - DJANGO="git+git://github.com/django/django.git@master#egg=django==1.4c2"
+
+# command to install dependencies
+install: pip install $DJANGO --use-mirrors
+
+# command to run tests
+script: django-admin.py test --pythonpath=src/shorturls/ --settings=testsettings