Files
OpenMensa-Parser-STW-Potsdam/Makefile
T
2018-10-23 10:39:48 +02:00

23 lines
336 B
Makefile

RUN = pipenv run python -m stw_potsdam
dependencies:
pipenv sync --dev
run:
$(RUN)
debug:
FLASK_ENV=development $(RUN)
test:
pipenv run python -m pytest -v --cov stw_potsdam
test_debug:
pipenv run python -m pytest -v --trace
coverage:
pipenv run python -m coveralls
.PHONY: dependencies run debug test test_debug coverage