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
14 changes: 10 additions & 4 deletions .github/workflows/chore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,22 @@ jobs:
uv venv
uv pip install -e .

- name: Test with pytest
- name: Run tests with coverage
run: |
uv run pytest --cov --junitxml=junit.xml
uv run pytest --cov --cov-branch --cov-report=xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Test with pytest
run: |
uv run pytest --cov --junitxml=junit.xml

- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
report_type: test_results
files: junit.xml