Files
OpenMensa-Parser-STW-Potsdam/Makefile
T
Falco Duersch 8a84651fdc Setup Travis CI
2018-10-23 08:43:32 +02:00

20 lines
247 B
Makefile

RUN = pipenv run python -m stw_potsdam
dependencies:
pipenv sync
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