Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main
Expand Down Expand Up @@ -59,7 +62,11 @@ jobs:
- name: Install dependencies
run: uv sync --locked --group dev
- name: Unit + integration tests + coverage
run: uv run --no-sync pytest --cov --cov-report=term-missing
run: uv run --no-sync pytest --cov --cov-report=xml --cov-report=term-missing
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}

dbt-build:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ venv/
.mypy_cache/
.coverage
.coverage.*
coverage.xml
htmlcov/

# Runtime data (DuckDB warehouse)
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ tasks:
test:coverage:
desc: Run unit + integration tests with coverage report
cmds:
- uv run pytest --cov --cov-report=term-missing
- uv run pytest --cov --cov-report=xml --cov-report=term-missing

ci:
desc: Run full CI check locally (mirrors GitHub Actions, excludes Docker build)
Expand Down
Loading