From 6b47653f63db37d3eecab7bf24fc0e03d8324b2a Mon Sep 17 00:00:00 2001 From: --local <--local> Date: Wed, 5 Jun 2024 12:00:00 +0200 Subject: [PATCH] Add dev dependencies into venv init process --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 17b025e..62ce55e 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Creates a virtual environment and installs dependencies for local development. venv: - poetry install --no-root + poetry install --no-root --with dev poetry run pre-commit install # Locks the versions of project dependencies for consistency.