From 287d3e2403476bcd24af02b4392daea55ea0f275 Mon Sep 17 00:00:00 2001 From: Fares Abawi Date: Wed, 17 Jan 2024 23:42:31 +0100 Subject: [PATCH] Update manual_code_coverage.yml --- .github/workflows/manual_code_coverage.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manual_code_coverage.yml b/.github/workflows/manual_code_coverage.yml index bb34713..d7f603b 100644 --- a/.github/workflows/manual_code_coverage.yml +++ b/.github/workflows/manual_code_coverage.yml @@ -57,8 +57,13 @@ jobs: # coverage run -a --source=wrapyfi -m unittest discover -s wrapyfi; \ # coverage report --data-file=/tmp/shared_volume/.coverage && \ # coverage xml -o /tmp/shared_volume/coverage.xml --data-file=/tmp/shared_volume/.coverage" - - # Step 7: Upload the coverage report (remains unchanged) + + # Step 7: Print out the coverage.xml + - name: Print content of coverage.xml + run: | + cat ${GITHUB_WORKSPACE}/shared_directory/coverage.xml + + # Step 8: Upload the coverage report (remains unchanged) - name: Upload coverage report to Codecov uses: codecov/codecov-action@v3 with: