mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-12 14:54:04 +02:00
Set conservative line and branch coverage floors for stable HA versions (#1566)
This commit is contained in:
parent
472796215b
commit
87486f9eb3
2 changed files with 10 additions and 1 deletions
9
.github/workflows/pytest.yaml
vendored
9
.github/workflows/pytest.yaml
vendored
|
|
@ -103,6 +103,15 @@ jobs:
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if [[ "${CORE_VERSION}" != "dev" && "${PYTEST_OUTCOME}" == "success" ]]; then
|
||||
echo "Required coverage: 89% lines and 80% branches." >> "${GITHUB_STEP_SUMMARY}"
|
||||
if ! jq -e '.totals | .covered_lines * 100 >= .num_statements * 89
|
||||
and .covered_branches * 100 >= .num_branches * 80' core/coverage.json > /dev/null; then
|
||||
echo "::error::Coverage must be at least 89% lines and 80% branches."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
- name: Upload coverage reports
|
||||
if: ${{ !cancelled() }}
|
||||
uses: actions/upload-artifact@v7.0.1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue