10 lines
231 B
YAML
10 lines
231 B
YAML
|
language: python
|
||
|
python:
|
||
|
- "2.5"
|
||
|
- "2.6"
|
||
|
- "2.7"
|
||
|
install:
|
||
|
- pip install -r requirements.txt --use-mirrors
|
||
|
- pip install coverage django-discover-runner
|
||
|
script: coverage run ./manage.py test folivora && coverage report -m
|