From eed98781e355ec9b1bac859f43e1f1e8e4bd9b66 Mon Sep 17 00:00:00 2001 From: Balaji Sankar Date: Fri, 1 Nov 2024 20:36:10 -0400 Subject: [PATCH] fix: Code Coverage --- .github/workflows/pytest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 50412bd2..7d6e2e49 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -44,13 +44,13 @@ jobs: run: | cd ./backend pwd - pytest --cov --cov-report=xml + pytest --cov --cov-report=xml:./backend/coverage.xml - name: Upload coverage to Codecov if: always() uses: codecov/codecov-action@v3 with: - files: ./coverage.xml + files: ./backend/coverage.xml flags: unittests name: codecov-umbrella fail_ci_if_error: false