From 66fdc004b712b8c665719c24c9856fdf093fc04d Mon Sep 17 00:00:00 2001 From: Vincent Vallaeys Date: Thu, 11 Apr 2024 21:29:50 +0100 Subject: [PATCH] Run submission checks (#268) * chore: celery #206 * chore: Support partial update for project * chore: support patch for project 2 * refactor!: rework checks and submissions * chore: allow models passed to tasks * feat: added -k to test.sh --- backend/setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/setup.sh b/backend/setup.sh index 3b0a169a..92839a1d 100755 --- a/backend/setup.sh +++ b/backend/setup.sh @@ -1,6 +1,7 @@ echo "Installing dependencies..." -pip install poetry > /dev/null +pip install poetry > /dev/null 2>&1 poetry install > /dev/null + echo "Migrating database..." python manage.py migrate > /dev/null python manage.py migrate django_celery_results > /dev/null