From 3a9db4f3a7ec27d7e37602eda2a9006305f626e0 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 27 May 2025 14:40:06 -0700 Subject: [PATCH] fix makefile --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8c3e59f1d..7a8ebf5fa 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ GIT_HOOKS_PATH ?= $(shell git config --global core.hooksPath || echo "") bootstrap: ## Set up everything to run the app make generate-version-file rm poetry.lock + poetry lock poetry install --sync --no-root poetry run pre-commit install createdb notification_api || true @@ -113,7 +114,9 @@ test: ## Run tests and create coverage report .PHONY: py-lock py-lock: ## Syncs dependencies and updates lock file without performing recursive internal updates - rm poetry.lock + + rm poetry.lock + poetry lock poetry install --sync