From a185d07a3299932f6827f293b1a4115cac9317a4 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Mon, 6 Jan 2025 17:10:00 +0000 Subject: Make some insignificant changes to Makefile --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 76da020..77d18b4 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,10 @@ PROJECT_DIR = /home/jo/alphabetlearning .PHONY: deploy +run-development-server: + @echo "Running the development server..." + uv run manage.py runserver + deploy-to-staging: @echo "1. Pushing changes to remote repository..." git push @@ -20,7 +24,7 @@ deploy-to-staging: @echo "Deployment completed!" test-all: - @pytest -q -s . + @uv run pytest -q -s . test: - @pytest -q -s -m "not slow" + @uv run pytest -q -s -m "not slow" -- cgit v1.2.3