From 57538d63208e6f3039ab469f2c4c8f69518fe83f Mon Sep 17 00:00:00 2001 From: Elijah Date: Sun, 14 Jan 2024 19:46:13 +0100 Subject: [PATCH] Logged Python to ensure correct installation --- .gitea/workflows/ci-pipeline.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci-pipeline.yaml b/.gitea/workflows/ci-pipeline.yaml index 3d5568f..efb603e 100644 --- a/.gitea/workflows/ci-pipeline.yaml +++ b/.gitea/workflows/ci-pipeline.yaml @@ -27,6 +27,7 @@ jobs: - name: Check Python version run: | python3 --version + echo "Python version: $(python3 --version)" - name: Create virtual environment run: | @@ -45,7 +46,5 @@ jobs: - name: Run tests run: | source venv/bin/activate - # https://stackoverflow.com/questions/61747698/django-error-when-running-server-locally-attributeerror-list-object-has-no - pip uninstall subprocess.run - python3 manage.py test + python manage.py test