From 0b0dd763be8f9c2e891a2991d96c9856fe295257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Andr=C3=A9s=20Marino=20Rojas?= <47573394+Marinovsky@users.noreply.github.com> Date: Fri, 25 Oct 2024 12:00:39 -0500 Subject: [PATCH] Attempt to fix failing unit tests --- .github/workflows/regression-testing.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/regression-testing.yml b/.github/workflows/regression-testing.yml index 4ebf1bf9..f84debbf 100644 --- a/.github/workflows/regression-testing.yml +++ b/.github/workflows/regression-testing.yml @@ -27,10 +27,10 @@ jobs: run: pip install -r requirements.txt - name: Run normal tests - run: pytest -s -rs + run: python pytest -s -rs - name: Run API tests - run: pytest -s tests/components/api/test_clients.py + run: python pytest -s tests/components/api/test_clients.py env: QC_USER_ID: ${{ secrets.QC_USER_ID }} QC_API_TOKEN: ${{ secrets.QC_API_TOKEN }} @@ -44,7 +44,7 @@ jobs: # Before running the tests we free up some disk space to prevent issues. # Removing /usr/local/lib/android frees up ~10GB, which we can safely do because we don't use Android. - name: Run CLI tests - run: sudo rm -rf /usr/local/lib/android && pytest -s tests/test_cli.py + run: sudo rm -rf /usr/local/lib/android && python pytest -s tests/test_cli.py if: runner.os == 'Linux' env: QC_USER_ID: ${{ secrets.QC_USER_ID }}