updated lock
Some checks failed
🧪 Test / 🧪 Lock + lint (push) Has been cancelled

This commit is contained in:
2026-08-10 17:13:29 +02:00
parent 30bdc7c516
commit 1e90ac1737
5 changed files with 37 additions and 12 deletions

View File

@@ -20,7 +20,9 @@ class TestOptimizeObjective(unittest.TestCase):
def test_routers_point_at_it(self):
for skill in ROUTERS:
text = (SKILLS / skill / "SKILL.md").read_text(encoding="utf-8")
self.assertIn("`optimize` skill", text, f"{skill} does not route to optimize")
self.assertIn(
"`optimize` skill", text, f"{skill} does not route to optimize"
)
if __name__ == "__main__":