From 25bf382a0553ee3bb5cb2acafb65084295520686 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 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/setup.sh b/backend/setup.sh index dee4a8db..92839a1d 100755 --- a/backend/setup.sh +++ b/backend/setup.sh @@ -1,8 +1,10 @@ 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 echo "Populating database..." python manage.py loaddata */fixtures/* > /dev/null echo "Compiling translations..."