From f2c681c9c84a5aac9b8e6ad924d8ae9bf3afbee4 Mon Sep 17 00:00:00 2001 From: lhennig0103 <144096938+lhennig0103@users.noreply.github.com> Date: Tue, 4 Jun 2024 14:02:00 +0200 Subject: [PATCH] Update Makefile --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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