Combine the downloaded code coverage files

Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
Pedro Algarvio 2023-08-28 18:46:11 +01:00 committed by Megan Wilhite
parent 31d7a1c138
commit 48bccb9e87
5 changed files with 30 additions and 5 deletions

View file

@ -1318,9 +1318,14 @@ jobs:
uses: actions/download-artifact@v3
with:
name: all-testrun-coverage-artifacts
path: artifacts/coverage/
- name: Display structure of downloaded files
run: ls -R
run: ls -R artifacts/
- name: Combine Code Coverage
run: |
nox --force-color -e combine-coverage
set-pipeline-exit-status:
# This step is just so we can make github require this step, to pass checks

View file

@ -1373,9 +1373,14 @@ jobs:
uses: actions/download-artifact@v3
with:
name: all-testrun-coverage-artifacts
path: artifacts/coverage/
- name: Display structure of downloaded files
run: ls -R
run: ls -R artifacts/
- name: Combine Code Coverage
run: |
nox --force-color -e combine-coverage
build-src-repo:
name: Build Source Repository

View file

@ -1352,9 +1352,14 @@ jobs:
uses: actions/download-artifact@v3
with:
name: all-testrun-coverage-artifacts
path: artifacts/coverage/
- name: Display structure of downloaded files
run: ls -R
run: ls -R artifacts/
- name: Combine Code Coverage
run: |
nox --force-color -e combine-coverage
set-pipeline-exit-status:
# This step is just so we can make github require this step, to pass checks

View file

@ -1368,9 +1368,14 @@ jobs:
uses: actions/download-artifact@v3
with:
name: all-testrun-coverage-artifacts
path: artifacts/coverage/
- name: Display structure of downloaded files
run: ls -R
run: ls -R artifacts/
- name: Combine Code Coverage
run: |
nox --force-color -e combine-coverage
build-src-repo:
name: Build Source Repository

View file

@ -329,8 +329,13 @@
uses: actions/download-artifact@v3
with:
name: all-testrun-coverage-artifacts
path: artifacts/coverage/
- name: Display structure of downloaded files
run: ls -R
run: ls -R artifacts/
- name: Combine Code Coverage
run: |
nox --force-color -e combine-coverage
<%- endblock jobs %>