From a7b999334dc2b92d987160b5e5be8385d982d9d3 Mon Sep 17 00:00:00 2001 From: Andrew Hosgood Date: Wed, 6 Nov 2024 17:17:43 +0000 Subject: [PATCH] Fix tests --- .github/actions/python-tests/action.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/actions/python-tests/action.yml b/.github/actions/python-tests/action.yml index c02a10d..fa2c160 100644 --- a/.github/actions/python-tests/action.yml +++ b/.github/actions/python-tests/action.yml @@ -16,10 +16,8 @@ runs: run: poetry install --no-interaction --no-root --with dev shell: bash - name: Collect statics assets - run: | - mkdir app/static - poetry run python manage.py collectstatic + run: poetry run python /app/manage.py collectstatic shell: bash - name: Run Python tests - run: poetry run python manage.py test + run: poetry run python /app/manage.py test shell: bash