diff --git a/Makefile b/Makefile index ed73aa71..05df034c 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: test docs check +.PHONY: test docs check install-dev test: python -m pytest tests @@ -8,4 +8,8 @@ docs: python -m mkdocs serve --clean check: - pre-commit run --all-files \ No newline at end of file + pre-commit run --all-files + +install-dev: + pip install -e ".[dev]" + pre-commit install