evorepo/.travis.yml
Jelle van der Waa 2ddb51512b Move coverage configuration to .coverage
Introduce a .coveragerc file to omit multiple files from test coverage
such as django's migrations, env and the tests itself.
2017-06-11 18:43:10 +02:00

12 lines
240 B
YAML

language: python
python:
- "2.7"
install: "pip install -r requirements.txt && pip install coveralls"
script:
- python manage.py collectstatic --noinput
- coverage run --rcfile .coveragerc manage.py test
after_success:
- coveralls