diff --git a/Makefile b/Makefile index e96c7db..1c8ca2d 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,12 @@ PYTEST_ARGS := -W ignore::DeprecationWarning -vv +docs: + mkdocs build + test: pytest $(PYTEST_ARGS) test-watch: pytest-watch -- $(PYTEST_ARGS) -.PHONY: test test-watch +.PHONY: test test-watch docs