Enable coveralls reporting

This commit is contained in:
Tom Price
2016-07-11 12:15:17 +01:00
parent 4cec20e357
commit 3052f28329

View File

@@ -8,7 +8,7 @@ before_install:
install: install:
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install coverage - pip install coveralls
before_script: before_script:
- python manage.py collectstatic --noinput - python manage.py collectstatic --noinput
@@ -16,6 +16,5 @@ before_script:
script: script:
- coverage run manage.py test RIGS - coverage run manage.py test RIGS
after_script: after_success:
- coverage report -m --include=PyRIGS/*.*,RIGS/*.* --omit=*/migrations/* | tee coverage.txt - coveralls
- coverage html --include=PyRIGS/*.*,RIGS/*.* --omit=*/migrations/*