test: bump coverage gate from 80%% to 90%%
Lint / python (push) Failing after 22s
Lint / pssa (push) Successful in 25s

Update --cov-fail-under in lint workflow + docs (AGENTS, README, ARCHITECTURE). Note: A5 closeout reported 80.10%% so this run will likely fail until additional tests are added.
This commit is contained in:
2026-05-14 23:04:56 +02:00
parent 4f656725bf
commit 451a61c6a1
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -140,9 +140,9 @@ jobs:
& $venvPy -m mypy --strict src
if ($LASTEXITCODE -ne 0) { throw "mypy failed" }
- name: pytest (coverage >= 80%)
- name: pytest (coverage >= 90%)
shell: powershell
run: |
$venvPy = Join-Path $env:VENV_DIR 'Scripts\python.exe'
& $venvPy -m pytest tests/python --cov=ci_orchestrator --cov-fail-under=80
& $venvPy -m pytest tests/python --cov=ci_orchestrator --cov-fail-under=90
if ($LASTEXITCODE -ne 0) { throw "pytest failed" }