ci: report integration coverage

This commit is contained in:
2026-06-25 08:26:43 +00:00
parent 75a50987d3
commit c45423f7f3
2 changed files with 9 additions and 2 deletions
+2 -1
View File
@@ -41,10 +41,11 @@ jobs:
echo "score=$SCORE" >> $GITHUB_OUTPUT
echo "Pylint score: $SCORE"
- name: Run unit tests and extract coverage
- name: Run tests and extract coverage
id: coverage
run: |
python -m coverage run -m unittest discover -t . -s tests/unit -v
python -m coverage run -a -m unittest discover -t . -s tests/integration -v
TOTAL=$(python -m coverage report --format=total)
echo "total=$TOTAL" >> $GITHUB_OUTPUT
echo "Coverage total: $TOTAL"