Update test results upload action to use dorny/test-reporter and specify artifact details
Some checks failed
Build Simulation and Test / Run All Tests (push) Failing after 47s

This commit is contained in:
Sam 2025-05-31 20:17:31 -05:00
parent b5a3d6348f
commit 7fc550f4dd

View File

@ -32,8 +32,9 @@ jobs:
path: pytest-results.xml path: pytest-results.xml
retention-days: 5 retention-days: 5
- uses: actions/upload-artifact@v4 # upload test results - uses: dorny/test-reporter@v2
if: ${{ !cancelled() }} # run this step even if previous step failed
with: with:
name: pytest-results artifact: pytest-results # artifact name
path: pytest-results.xml name: Pytest Tests # Name of the check run which will be created
path: '*.xml' # Path to test results (inside artifact .zip)
reporter: jest-junit # Format of test results