Add Coveralls integration

This commit is contained in:
Falco Duersch
2018-10-23 10:03:29 +02:00
parent 8b09b81ba3
commit c5dcde37af
6 changed files with 237 additions and 28 deletions
+6 -3
View File
@@ -2,7 +2,7 @@
RUN = pipenv run python -m stw_potsdam
dependencies:
pipenv sync
pipenv sync --dev
run:
$(RUN)
@@ -11,9 +11,12 @@ debug:
FLASK_ENV=development $(RUN)
test:
pipenv run python -m pytest -v
pipenv run python -m pytest -v --cov stw_potsdam
test_debug:
pipenv run python -m pytest -v --trace
.PHONY: run debug test test_debug
coverage:
pipenv run python -m coveralls
.PHONY: dependencies run debug test test_debug coverage