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 c00c447..17601a2 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 - ty: .venv uv run ty check valentbind