blob: 5b3789b72691a44a986d4903ed8bebf1515c33da (
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/ --settings=shorturls.testsettings
|