From d7ffccea268770d87e3f61e87cd10c0b5fa35169 Mon Sep 17 00:00:00 2001 From: Fergus MacConnell Date: Wed, 3 Apr 2024 15:46:24 -0700 Subject: [PATCH] Update install deps run command. --- .github/workflows/django-unit-tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/django-unit-tests.yaml b/.github/workflows/django-unit-tests.yaml index 5da697184..6e31c92a2 100644 --- a/.github/workflows/django-unit-tests.yaml +++ b/.github/workflows/django-unit-tests.yaml @@ -18,10 +18,10 @@ jobs: - name: Install Dependencies run: | cd app/backend - python -m pip install --upgrade pip - pip install -r requirements.txt + python3 -m pip install --upgrade pip + python3 -m pip install -r requirements.txt - name: Test run: | cd app/backend - python manage.py test \ No newline at end of file + python3 manage.py test \ No newline at end of file