evorepo/.travis.yml

12 lines
246 B
YAML
Raw Normal View History

language: python
python:
- "2.7"
2017-05-16 12:53:55 -07:00
install: "pip install -r requirements.txt && pip install coveralls"
script:
- python manage.py collectstatic --noinput
2017-05-16 12:53:55 -07:00
- coverage run --omit='env*' --source='.' manage.py test
after_success:
- coveralls