From 161b5291d0fbdf308890c75c692951cdca3364bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Jan=20K=C3=B6hler?= Date: Thu, 12 Dec 2024 15:54:44 +0100 Subject: [PATCH] Update ci-cd.yml --- .github/workflows/ci-cd.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index c4b737c1..fa666c50 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -243,25 +243,15 @@ jobs: --color no shell: bash # NOTE: required for windows poetry calls - - name: "[๐Ÿ]ย Create coverage report" - if: success() || failure() - run: poetry run coverage html --directory ${{ env.COVERAGE_REPORT_PATH }} - shell: bash # NOTE: required for windows poetry calls - - # - name: "Print listing of build dir" - # if: success() || failure() - # run: find ${{github.workspace}}/build -path ${{github.workspace}}/build/_deps -prune -o -print - # shell: bash # NOTE: required for windows - - name: "[๐Ÿ] Store coverage results" if: success() || failure() uses: actions/upload-artifact@v4 with: name: python-unit-test-coverage-report-${{ matrix.os }}_py${{ matrix.python-version }} - path: ${{ env.COVERAGE_REPORT_PATH }} + path: .coverage # NOTE: pytest-cov coverage binary file, can be combined later! retention-days: 1 if-no-files-found: error - + - name: "[๐Ÿ] Store allure test results" if: success() || failure() uses: actions/upload-artifact@v4