From 1ed05c85473dcb6c5bae1416375a61961eb986a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Jan=20K=C3=B6hler?= Date: Thu, 12 Dec 2024 15:55:48 +0100 Subject: [PATCH] Update integration-tests.yml --- .github/workflows/integration-tests.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index b862c513..aa9b615b 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -129,17 +129,12 @@ 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: "[🐍] Store coverage results" if: success() || failure() uses: actions/upload-artifact@v4 with: name: python-integration-tests-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