Report missing lines in the CI coverage output

A coverage-gate failure currently shows only the percentage, which is not
enough to identify the uncovered line from the log.
This commit is contained in:
Yiorgis Gozadinos 2026-07-27 13:26:02 +03:00
parent ab88188529
commit e186720a5e
No known key found for this signature in database

View file

@ -77,7 +77,7 @@ jobs:
env:
HF_HUB_OFFLINE: ${{ steps.hf-cache.outputs.cache-hit == 'true' && '1' || '0' }}
TRANSFORMERS_OFFLINE: ${{ steps.hf-cache.outputs.cache-hit == 'true' && '1' || '0' }}
run: uv run pytest -m "not integration" --cov=haiku --cov-report=xml
run: uv run pytest -m "not integration" --cov=haiku --cov-report=xml --cov-report=term-missing:skip-covered
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with: