Files
MIPLearn/Makefile

15 lines
212 B
Makefile

PYTEST_ARGS := -W ignore::DeprecationWarning -vv -x --log-level=DEBUG
all: docs test
docs:
mkdocs build
test:
pytest $(PYTEST_ARGS)
test-watch:
pytest-watch -- $(PYTEST_ARGS)
.PHONY: test test-watch docs