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
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,18 @@ jobs:
- name: Install Hypothesis for tests
run: uv pip install --python .venv/bin/python hypothesis

- name: Install coverage tooling
run: uv pip install --python .venv/bin/python pytest-cov

- name: Pytest
run: uv run pytest
run: uv run pytest --cov=context_compiler --cov-report=term --cov-report=xml:coverage.xml --cov-report=html:htmlcov

- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-python-${{ matrix.python-version }}
path: |
coverage.xml
htmlcov/
if-no-files-found: ignore
Loading