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 1dcb95d commit 4e21866Copy full SHA for 4e21866
.github/workflows/test.yml
@@ -175,3 +175,9 @@ jobs:
175
with:
176
file: for_testing/coverage.xml
177
if: ${{ always() }}
178
+ - name: Upload pytest test results
179
+ uses: actions/upload-artifact@v2
180
+ with:
181
+ name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
182
+ path: for_testing/test-results.xml
183
+ if: ${{ always() && matrix.check == 'test' }}
tools/ci/check.sh
@@ -25,7 +25,7 @@ elif [ "${CHECK_TYPE}" == "test" ]; then
25
cd for_testing
26
cp ../.coveragerc .
27
pytest --doctest-modules --doctest-plus --cov nibabel --cov-report xml \
28
- -v --pyargs nibabel
+ --junitxml=test-results.xml -v --pyargs nibabel
29
else
30
false
31
fi
0 commit comments