Skip to content
Merged
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
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,14 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- run: uv sync --group dev
- run: uv run pytest -m unit
- run: uv run pytest -m unit --cov=idempotency_kit --cov-report=xml
- uses: codecov/codecov-action@v7
if: matrix.python-version == '3.13'
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml
flags: unit
continue-on-error: true

test-integration:
name: Integration tests
Expand All @@ -47,6 +54,7 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml
flags: integration
continue-on-error: true

# Sentinel job — use this as the single required status check in branch protection.
Expand Down