From be471e0e541e77ab553d8cab7b1fb83bd94859f8 Mon Sep 17 00:00:00 2001 From: Eddy Filip Date: Thu, 19 Dec 2024 20:16:11 +0200 Subject: [PATCH] Remove codecov from workflow Currently no PRs can be merged since the codecov step doesn't work anymore. Fixing that is a lengthy process, so to temporarily unblock important PRs from being merged (i.e. #116, #114, #107), we will remove this from our pipeline. --- .github/workflows/test.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 21f3c2c..31adb07 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,9 +25,3 @@ jobs: - name: Test run: | poetry run pytest src/tests --cov=./ --cov-report=xml - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v2 - with: - fail_ci_if_error: true - files: ./coverage.xml - token: ${{ secrets.CODECOV_TOKEN }}