diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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" |