evorepo/.travis.yml

12 lines
240 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
- coverage run --rcfile .coveragerc manage.py test
2017-05-16 12:53:55 -07:00
after_success:
- coveralls