test: establish Gate 1 quality baseline (#90)

Establishes the mandatory testing, coverage, repeatability, mutation, packaging, supply-chain, and AIWG workspace baseline before feature integration.
This commit is contained in:
Joseph Magly
2026-08-15 01:07:47 -04:00
committed by GitHub
parent 62a480fd6a
commit 37d008d462
27 changed files with 976 additions and 174 deletions
+4 -4
View File
@@ -13,11 +13,11 @@ from typing import Any
BASELINE_FLOORS = {
"repository_statement": 60.0,
"repository_branch": 42.0,
"repository_statement": 70.0,
"repository_branch": 55.0,
"changed_line": 90.0,
"mature_cpu_statement": 80.0,
"mature_cpu_branch": 75.0,
"mature_cpu_statement": 90.0,
"mature_cpu_branch": 78.0,
"mutation_score": 75.0,
"warning_budget": 0.0,
}
+3
View File
@@ -18,6 +18,8 @@ DEFAULT_TESTS = (
"tests/test_config.py",
"tests/test_config_properties.py",
"tests/test_coverage_thresholds.py",
"tests/test_evaluation_reporting_contracts.py",
"tests/test_lm_eval_reporting_contracts.py",
"tests/test_numerical_contracts.py",
"tests/test_persistence_contracts.py",
"tests/test_property_contracts.py",
@@ -25,6 +27,7 @@ DEFAULT_TESTS = (
"tests/test_metrics.py",
"tests/test_remote_contracts.py",
"tests/test_runtime_contracts.py",
"tests/test_telemetry_failure_contracts.py",
)
HASH_SEEDS = ("0", "1", "8675309")