From 0c852ddca476828c6845402c2e458a446e6a921a Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 5 Mar 2025 15:25:04 -0800 Subject: [PATCH] see if this works --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3184c8b22..b6d21a9cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -160,14 +160,14 @@ jobs: --python ${{ steps.setup-python.outputs.python-version }} \ --dev \ --frozen \ - pytest + pytest --junitxml=junit-${{ steps.setup-python.outputs.python-version }}.xml - name: Upload backend test results if: always() uses: actions/upload-artifact@v4 with: name: backend-test-results - path: junit.xml + path: junit-${{ steps.setup-python.outputs.python-version }}.xml retention-days: 7 if-no-files-found: error -