From 7cadbbdf762f5ff06e9533c6be5b7461d6c6143e Mon Sep 17 00:00:00 2001 From: Xenepix Date: Thu, 11 Jan 2024 22:37:22 +0100 Subject: [PATCH] fix(makefile): add shell command to makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 5091c4ef..795924ce 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,9 @@ clean: celery: source .venv/bin/activate && watchfiles --filter python celery.__main__.main --args "-A tests.test_app worker --beat -l INFO" +shell: + source .venv/bin/activate && python tests/test_app/manage.py shell + test: source .venv/bin/activate && python tests/test_app/manage.py test -v2 --keepdb --parallel