aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: a3c4df7896843597ff770f017e1e47bc56ccd3e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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