2012-11-24 15:26:20 +01:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.5"
|
|
|
|
- "2.6"
|
|
|
|
- "2.7"
|
|
|
|
install:
|
|
|
|
- pip install -r requirements.txt --use-mirrors
|
|
|
|
- pip install coverage django-discover-runner
|
2012-11-24 16:22:48 +01:00
|
|
|
- python extras/scripts/create_local_settings.py
|
2012-11-24 15:43:17 +01:00
|
|
|
script: coverage run ./manage.py test tests && coverage report -m
|