From b316cb673c38dee483f04eb38ea2a866b1eee4de Mon Sep 17 00:00:00 2001 From: codex Date: Wed, 22 Apr 2026 01:24:30 -0300 Subject: [PATCH] ci(bstein-home): run docs before loc gate --- testing/ci/quality_gate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/ci/quality_gate.py b/testing/ci/quality_gate.py index 91e7a83..7c16b54 100644 --- a/testing/ci/quality_gate.py +++ b/testing/ci/quality_gate.py @@ -321,8 +321,8 @@ def run_gate(contract_path: Path, *, backend_coverage: Path, frontend_coverage: threshold = float(contract.get("coverage_threshold_pct", 95)) issues: list[GateIssue] = [] - issues.extend(check_file_sizes(managed_files, max_lines=max_lines)) issues.extend(check_docstrings(docstring_files)) + issues.extend(check_file_sizes(managed_files, max_lines=max_lines)) issues.extend(check_coverage(coverage_files, backend_report=backend_coverage, frontend_report=frontend_coverage, threshold=threshold)) coverage_values = _coverage_values_for_paths( coverage_files,