test(coverage): fail-under=50 Gate + XML-Report
Security Audit / Python Dependency Audit (push) Canceled after 0s
Security Audit / Node.js Dependency Audit (push) Canceled after 0s
Security Audit / Frontend Build (tsc + vite) (push) Canceled after 0s

Baseline liegt bei 55% (verifiziert auf 137). Gate mit 5%-Puffer,
kein CI-Job dafür – Tests brauchen echtes Postgres+Redis mit RLS-Setup,
läuft nur remote (SSH), nicht in Gitea Actions.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_015Ahyx6D3r7G1EuAc42nezn
This commit is contained in:
2026-09-02 22:52:42 +02:00
co-authored by Claude Sonnet 5
parent 538cbb0437
commit 9bdce25187
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -14,6 +14,9 @@ env/
# Alembic # Alembic
backend/migrations/versions/*.pyc backend/migrations/versions/*.pyc
backend/coverage.xml
backend/.coverage
backend/htmlcov/
# Environment / Secrets # Environment / Secrets
.env .env
+1 -1
View File
@@ -5,4 +5,4 @@ asyncio_default_test_loop_scope = session
testpaths = tests testpaths = tests
python_files = test_*.py python_files = test_*.py
python_functions = test_* python_functions = test_*
addopts = --cov=app --cov-report=term-missing addopts = --cov=app --cov-report=term-missing --cov-report=xml:coverage.xml --cov-fail-under=50