From 04706a9b6bf225e388eee9c6efea9f2d091387ee Mon Sep 17 00:00:00 2001 From: Aaron Meyer Date: Wed, 26 Aug 2026 06:26:13 -0700 Subject: [PATCH] Remove Codecov integration Drop the Codecov upload step from the test workflow, the now-unused coverage.xml make target, and the empty, orphaned coveragerc file that was never actually referenced by either. --- .github/workflows/coveragerc | 0 .github/workflows/pytest.yml | 11 +---------- makefile | 3 --- 3 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 .github/workflows/coveragerc diff --git a/.github/workflows/coveragerc b/.github/workflows/coveragerc deleted file mode 100644 index e69de29..0000000 diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index ff2ab2e..9813254 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -13,13 +13,4 @@ jobs: with: enable-cache: false - name: Run tests - run: make coverage.xml - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage.xml - flags: unittests - env_vars: OS,PYTHON - name: codecov-umbrella - fail_ci_if_error: true + run: make test diff --git a/makefile b/makefile index 531ff50..2cbf4b0 100644 --- a/makefile +++ b/makefile @@ -8,9 +8,6 @@ test: .venv .venv: uv sync -coverage.xml: .venv - uv run pytest --junitxml=junit.xml --cov=valentbind --cov-report xml:coverage.xml - pyright: .venv uv run pyright valentbind