We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb6cc52 commit e29590bCopy full SHA for e29590b
2 files changed
.github/workflows/ci.yml
@@ -74,11 +74,14 @@ jobs:
74
run: uv sync --all-extras
75
76
- name: Run unit tests with coverage
77
- run: uv run pytest tests/unit/ -v --cov=drift --cov-report=lcov
+ run: uv run pytest tests/unit/ -v --cov=drift/core --cov-report=xml
78
79
- name: Upload coverage to Coveralls
80
+ if: matrix.python-version == '3.9'
81
# if: matrix.python-version == '3.9' && github.event_name == 'push' && github.ref == 'refs/heads/main'
82
uses: coverallsapp/github-action@v2
83
+ with:
84
+ file: coverage.xml
85
86
build:
87
name: Build Package
.gitignore
@@ -227,4 +227,6 @@ __marimo__/
227
**/BUG_TRACKING.md
228
229
# Coverage
230
-coverage.lcov
+coverage.lcov
231
+coverage.xml
232
+.coverage
0 commit comments