From a8870b75a5390c804c599a68ccdda630ba8bee59 Mon Sep 17 00:00:00 2001 From: Daniel Stoops Date: Mon, 24 Jun 2024 16:18:54 +0300 Subject: [PATCH] Update Codecov ghaction --- .github/workflows/workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 1f90761..52924b4 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -81,13 +81,13 @@ jobs: python -m pip install pytest python -m pip install pytest-cov python -m pip install .[dev] - python -m pytest --cov=./ --cov-report=xml:pytest_cov.xml + python -m pytest --cov=./ --cov-report=xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 with: directory: ./coverage/reports/ fail_ci_if_error: true - files: ./coverage.xml,./pytest_cov.xml,!./cache + files: ./coverage.xml,!./cache flags: unittests name: codecov-umbrella token: ${{ secrets.CODECOV_TOKEN }}