From 01039ad71c433fdf5389e371ab72bb989e5f627b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Jan=20K=C3=B6hler?= Date: Fri, 13 Dec 2024 23:02:08 +0100 Subject: [PATCH] Update publish-reports-github-pages.yml --- .github/workflows/publish-reports-github-pages.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-reports-github-pages.yml b/.github/workflows/publish-reports-github-pages.yml index 5c114874..0cde01ec 100644 --- a/.github/workflows/publish-reports-github-pages.yml +++ b/.github/workflows/publish-reports-github-pages.yml @@ -127,14 +127,15 @@ jobs: pip install coverage - name: "[🐍] Combine coverage reports" - if: success() || failure() run: | coverage combine pycov-databases/*/python-coverage.sqlite - name: "[🐍] Create coverage report" - if: success() || failure() run: | - coverage html --directory pycov + coverage html --directory pycov --data-file=.coverage + + - name: "Display structure of coverage report" + run: ls -R pycov - name: "Publish test report" uses: peaceiris/actions-gh-pages@v4