diff --git a/.gitea/workflows/traceability-check.yml b/.gitea/workflows/traceability-check.yml index ff4e1ba6..52043f0d 100644 --- a/.gitea/workflows/traceability-check.yml +++ b/.gitea/workflows/traceability-check.yml @@ -94,7 +94,7 @@ jobs: # # Keep in sync with MIN_COVERAGE_PERCENT in scripts/extract-traces.ts; # scripts/extract-traces.test.ts fails if the two drift apart. - MIN_THRESHOLD=82 + MIN_THRESHOLD=88 if [ "$COVERAGE" -lt "$MIN_THRESHOLD" ]; then echo "❌ ERROR: Coverage ($COVERAGE%) is below minimum threshold ($MIN_THRESHOLD%)" exit 1 diff --git a/scripts/extract-traces.ts b/scripts/extract-traces.ts index bf7d2cef..de15a20f 100644 --- a/scripts/extract-traces.ts +++ b/scripts/extract-traces.ts @@ -56,7 +56,7 @@ interface TracesData { * * TRACES: | DR-093 */ -export const MIN_COVERAGE_PERCENT = 82; +export const MIN_COVERAGE_PERCENT = 88; // Repo root, derived from this script's location (scripts/ -> repo root). // Must NOT be hardcoded to a developer's machine, or CI checkouts see no files.