see if this works

This commit is contained in:
shamoon 2025-03-05 15:25:04 -08:00
parent 09ec0bc84d
commit 0c852ddca4

View File

@ -160,14 +160,14 @@ jobs:
--python ${{ steps.setup-python.outputs.python-version }} \ --python ${{ steps.setup-python.outputs.python-version }} \
--dev \ --dev \
--frozen \ --frozen \
pytest pytest --junitxml=junit-${{ steps.setup-python.outputs.python-version }}.xml
- -
name: Upload backend test results name: Upload backend test results
if: always() if: always()
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: backend-test-results name: backend-test-results
path: junit.xml path: junit-${{ steps.setup-python.outputs.python-version }}.xml
retention-days: 7 retention-days: 7
if-no-files-found: error if-no-files-found: error
- -