diff options
author | Matthew Lemon <y@yulqen.org> | 2025-01-06 17:10:00 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2025-01-06 17:10:00 +0000 |
commit | a185d07a3299932f6827f293b1a4115cac9317a4 (patch) | |
tree | 6c79c340acfc857aec0c0b2638396459392dc7bb /Makefile | |
parent | f5f01b14cd29d72f1da5e96971991ae5d2982b13 (diff) |
Make some insignificant changes to Makefile
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" |