From f79272e7b258f9ab3572511666137fb8b2279cc2 Mon Sep 17 00:00:00 2001 From: Charles Bennett Date: Wed, 24 Apr 2024 10:33:30 -0400 Subject: [PATCH] fix: Re-add install clause of Makefile. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7a8cdebf..cb196655 100644 --- a/Makefile +++ b/Makefile @@ -94,7 +94,7 @@ clean: ${PYTHON} -m pip uninstall -y -r requirements.txt #install: Install application along with required development packages -install: install.artillery +install: ${PYTHON} -m pip install --upgrade pip ${PYTHON} -m pip install -r requirements.txt @@ -125,7 +125,7 @@ endif endif cd artillery-tests; \ ls -1 tests | xargs -L1 -I%TEST_NAME% npx artillery run tests/%TEST_NAME% --environment ${ARTILLERY_ENV} --target ${ARTILLERY_TARGET} - + #start: Run the gunicorn server start: build.postgresql.local