File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 6363 coverage run --data-file=coverage_${{ matrix.env }}_${{ matrix.python }}.dat -m pytest --continue-on-collection-errors -v --durations=0 pySDC/tests -m ${{ matrix.env }}
6464 mv data data_${{ matrix.python }}
6565
66- - uses : actions/upload-artifact@v3
67- if : ${{ matrix.env }} == '3.10'
66+ - name : Uploading artifacts
67+ uses : actions/upload-artifact@v3
68+ if : ${{ matrix.python }} == '3.10'
6869 with :
6970 name : cpu-test-artifacts
7071 path : |
@@ -89,14 +90,18 @@ jobs:
8990 - name : Checkout
9091 uses : actions/checkout@v3
9192
92- - uses : actions/download-artifact@v3
93+ - name : Downloading artifacts
94+ uses : actions/download-artifact@v3
9395 with :
9496 path : .
9597
96- - name : prepare artifacts
98+ - name : Prepare artifacts
9799 run : |
98- ls -arlt
99- unzip *.zip
100+ ls -artl cpu-test-artifacts
101+ cp cpu-test-artifacts/data_3.10/* data/.
102+ python -m coverage combine cpu-test-artifacts/coverage_*_3.10.dat
103+ python -m coverage xml
104+ python -m coverage html
100105
101106 - name : Generate Coverage badge
102107 run : |
You can’t perform that action at this time.
0 commit comments