Files
OpenMensa-Parser-STW-Potsdam/Makefile
T

17 lines
219 B
Makefile

RUN = pipenv run python -m stw_potsdam
run:
$(RUN)
debug:
FLASK_ENV=development $(RUN)
test:
pipenv run python -m pytest -v
test_debug:
pipenv run python -m pytest -v --trace
.PHONY: run debug test test_debug