diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index e44dd5e..2bd2ca3 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -38,9 +38,11 @@ jobs: run: | poetry run pytest tests --junit-xml=build/test-results/pytest-main.xml - name: Publish Test Report - # TODO always run, even on fail # uses: mikepenz/action-junit-report@v2.1.1 # Pinned to SHA hash uses: mikepenz/action-junit-report@19609e8248238344e55b66f5b9c29b33a37f8a47 with: - report_paths: '**/build/test-results/*.xml' + check_name: Test Report Py${{ matrix.python-version }} + fail_on_failure: true github_token: ${{ secrets.GITHUB_TOKEN }} + report_paths: '**/build/test-results/*.xml' + require_tests: true