2012-08-24 00:04:25 +04:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.5"
|
|
|
|
- "2.6"
|
|
|
|
- "2.7"
|
2012-08-24 00:26:51 +04:00
|
|
|
env:
|
2012-08-24 00:58:53 +04:00
|
|
|
- DJANGO=https://github.com/django/django/zipball/master
|
2012-08-24 00:55:51 +04:00
|
|
|
- DJANGO=django==1.4.1 --use-mirrors
|
|
|
|
- DJANGO=django==1.3.3 --use-mirrors
|
2012-08-24 00:04:25 +04:00
|
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
2012-08-24 00:26:51 +04:00
|
|
|
install:
|
2012-08-24 00:55:51 +04:00
|
|
|
- pip install $DJANGO
|
2012-08-24 00:26:51 +04:00
|
|
|
- pip install -e . --use-mirrors
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
|
2012-08-24 00:04:25 +04:00
|
|
|
# command to run tests, e.g. python setup.py test
|
|
|
|
script: python setup.py test
|