Skip to content

Commit d4e7a20

Browse files
committed
Update ci_pipeline.yml
1 parent fe9e179 commit d4e7a20

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/ci_pipeline.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ jobs:
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: |

0 commit comments

Comments
 (0)