Skip to content

Commit e29590b

Browse files
committed
Try using xml
1 parent eb6cc52 commit e29590b

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,14 @@ jobs:
7474
run: uv sync --all-extras
7575

7676
- name: Run unit tests with coverage
77-
run: uv run pytest tests/unit/ -v --cov=drift --cov-report=lcov
77+
run: uv run pytest tests/unit/ -v --cov=drift/core --cov-report=xml
7878

7979
- name: Upload coverage to Coveralls
80+
if: matrix.python-version == '3.9'
8081
# if: matrix.python-version == '3.9' && github.event_name == 'push' && github.ref == 'refs/heads/main'
8182
uses: coverallsapp/github-action@v2
83+
with:
84+
file: coverage.xml
8285

8386
build:
8487
name: Build Package

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,4 +227,6 @@ __marimo__/
227227
**/BUG_TRACKING.md
228228

229229
# Coverage
230-
coverage.lcov
230+
coverage.lcov
231+
coverage.xml
232+
.coverage

0 commit comments

Comments
 (0)