We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4372d5 commit ede9771Copy full SHA for ede9771
.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,7 +193,9 @@ 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
199
uses: actions/upload-artifact@v4
200
201
name: test-reports-${{ matrix.python-version }}
0 commit comments