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 e04acbe commit 1dcb95dCopy full SHA for 1dcb95d
.github/workflows/test.yml
@@ -171,3 +171,7 @@ jobs:
171
- name: Run tests
172
run: tools/ci/check.sh
173
if: ${{ matrix.check != 'skiptests' }}
174
+ - uses: codecov/codecov-action@v1
175
+ with:
176
+ file: for_testing/coverage.xml
177
+ if: ${{ always() }}
tools/ci/check.sh
@@ -24,7 +24,8 @@ elif [ "${CHECK_TYPE}" == "test" ]; then
24
mkdir for_testing
25
cd for_testing
26
cp ../.coveragerc .
27
- pytest --doctest-modules --doctest-plus --cov nibabel -v --pyargs nibabel
+ pytest --doctest-modules --doctest-plus --cov nibabel --cov-report xml \
28
+ -v --pyargs nibabel
29
else
30
false
31
fi
0 commit comments