Update test workflow to upload results using Gitea action
Some checks failed
Build Simulation and Test / Run All Tests (push) Failing after 8s

This commit is contained in:
Sam 2025-05-31 19:56:11 -05:00
parent b52690549b
commit e00edd8137

View File

@ -29,8 +29,9 @@ jobs:
- name: Run tests - name: Run tests
run: uv run pytest tests --junit-xml=pytest-results.xml run: uv run pytest tests --junit-xml=pytest-results.xml
- name: Publish Test Results - name: Upload test results
if: always() if: always()
uses: actions/upload-test-results@v2 uses: gitea.com/actions/upload-artifact@v1
with: with:
files: pytest-results.xml name: pytest-results
path: pytest-results.xml