From 6439b73c006b6ca945c2f7302ca74e6fb7d989ea Mon Sep 17 00:00:00 2001 From: Mrityunjay Raj Date: Sat, 28 Feb 2026 06:41:17 +0530 Subject: [PATCH] fix: add --cov flags to Windows CI pytest command, fixes #9418 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5763de4b..7eb78c47c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -659,7 +659,7 @@ jobs: export PATH="$GITHUB_WORKSPACE/dist/binary/borg-dir:$PATH" borg.exe -V . env/bin/activate - python -m pytest -n4 --benchmark-skip -vv -rs -k "not remote" --junitxml=test-results.xml + python -m pytest -n4 --benchmark-skip -vv -rs -k "not remote" --cov=borg --cov-config=pyproject.toml --junitxml=test-results.xml - name: Upload test results to Codecov if: ${{ !cancelled() }}