diff options
| -rw-r--r-- | .travis.yml | 16 |
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 |
