From cbe27723cfc9dc03fa05080912e3cf2601bb4f32 Mon Sep 17 00:00:00 2001 From: Magnus Hedemark Date: Fri, 14 Aug 2026 16:55:35 -0400 Subject: [PATCH] fix(evals): drop bundles/ fixture path from eval-coverage test Rename the nested-skill fixture paths in test_nested_change_maps_to_nearest_skill_owner from bundles/example to example so no tracked file (other than the OKF upstream sample file) references the removed bundles/ directory, satisfying the final repo-wide sweep (VAL-REF-017). Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> --- scripts/test-eval-coverage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/test-eval-coverage.py b/scripts/test-eval-coverage.py index 511d9d6..ce47104 100644 --- a/scripts/test-eval-coverage.py +++ b/scripts/test-eval-coverage.py @@ -193,8 +193,8 @@ class TestModifiedSkills(unittest.TestCase): self.assertTrue({Path(name) for name in paths}.issubset(mods)) def test_nested_change_maps_to_nearest_skill_owner(self) -> None: - parent = "bundles/example" - child = "bundles/example/skills/child" + parent = "example" + child = "example/skills/child" write_skill(self.repo, parent) write_skill(self.repo, child) reference = Path(self.repo) / child / "references" / "guide.md"