From 9f6815bbdf019ee60332cb7df00584b9d18c21e3 Mon Sep 17 00:00:00 2001 From: tarilabs Date: Tue, 20 Feb 2024 09:20:27 +0100 Subject: [PATCH] kubeflow: disable codecov reporting GHA step --- .github/workflows/build.yml | 7 ------- .github/workflows/python-tests.yml | 8 -------- 2 files changed, 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 901d34890..19aa441be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,10 +50,3 @@ jobs: fi - name: Unit tests run: make test-cover - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.0.1 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - with: - files: coverage.txt - fail_ci_if_error: true diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 323575a7c..08ffd056f 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -59,14 +59,6 @@ jobs: else nox --python=${{ matrix.python }} fi - - name: Upload coverage report - uses: codecov/codecov-action@v4.0.1 - if: always() && matrix.session == 'tests' - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - with: - files: coverage.xml - fail_ci_if_error: true - name: Upload documentation if: matrix.session == 'docs-build' uses: actions/upload-artifact@v4