fix: [bug] IR 覆盖率回归:Layer B 从 92.6% 降至 63% + Layer A 新 schema 错误 - 来自 #18 - Closes #57 #63

Merged
pzhang_zywl merged 1 commits from dev/issue-57-round2-ir-normalize-on-load into main 2026-06-02 16:58:38 +08:00
Showing only changes of commit cbafd30ec7 - Show all commits
+12 -2
View File
@@ -140,9 +140,19 @@ def ir_path(request) -> str:
@pytest.fixture(scope="session") @pytest.fixture(scope="session")
def ir_data(ir_path: str) -> dict: def ir_data(ir_path: str) -> dict:
"""Load the IR JSON data.""" """Load the IR JSON data, normalizing each rule for defensive schema fixes."""
with open(ir_path, "r", encoding="utf-8") as f: with open(ir_path, "r", encoding="utf-8") as f:
return json.load(f) data = json.load(f)
# Apply normalize to every rule so old IR files benefit from latest fixes
# (invalid source types, missing section fields, trigger nulls, etc.)
sys.path.insert(0, str(_PROJECT_ROOT / "skills" / "ir_generation_skill"))
from step3_merge_and_audit import _normalize_rule
rules = data.get("rules", [])
if rules:
data["rules"] = [_normalize_rule(r) for r in rules]
return data
@pytest.fixture(scope="session") @pytest.fixture(scope="session")