OpenMensa parser for STW Potsdam after canteen website redesign

This commit is contained in:
Falco Duersch
2018-09-19 17:15:34 +02:00
commit e0b88bbc87
17 changed files with 5788 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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