Skip to content

Commit 4fe0d11

Browse files
committed
Fix CodeCov reporting
1 parent 48698c8 commit 4fe0d11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- uses: astral-sh/setup-uv@v7
6060
with:
6161
python-version: ${{ matrix.python-version }}
62-
- run: uv run --with Django~=${{ matrix.django-version }}.0 pytest -m "not selenium"
62+
- run: uv run --with Django~=${{ matrix.django-version }}.0 pytest --cov-report=xml -m "not selenium"
6363
- uses: codecov/codecov-action@v5
6464
Selenium:
6565
needs:
@@ -72,5 +72,5 @@ jobs:
7272
curl -LsSfO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
7373
sudo dpkg -i google-chrome-stable_current_amd64.deb || sudo apt-get -f install -y
7474
- uses: astral-sh/setup-uv@v7
75-
- run: uv run pytest -m selenium
75+
- run: uv run pytest --cov-report=xml -m selenium
7676
- uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)