We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e8b0d4 commit 67f85c3Copy full SHA for 67f85c3
.github/workflows/tests.yml
@@ -184,6 +184,7 @@ jobs:
184
$CONDA run --no-capture-output -n "$CONDA_ENV" coverage xml -o "reports/$CONDA_ENV/py-coverage.xml"
185
done
186
- name: Display Test Reports
187
+ if: success() || failure()
188
uses: dorny/test-reporter@v1
189
with:
190
name: Run Tests ${{ matrix.python-version }}
@@ -192,6 +193,7 @@ jobs:
192
193
reports/py${{ matrix.python-version }}_conda/TEST-tests.*.*.xml
194
reporter: java-junit
195
path-replace-backslashes: 'true' # Necessary for windows paths
196
+ fail-on-error: 'false'
197
- name: Upload Test Reports as Artifacts
198
uses: actions/upload-artifact@v4
199
0 commit comments