kin: auto-commit after pipeline

This commit is contained in:
Gros Frumos 2026-03-19 14:05:57 +02:00
parent 4401abc6ae
commit a0712096a5
2 changed files with 158 additions and 2 deletions

View file

@ -417,10 +417,10 @@ class TestSpecDrivenRoute:
assert "spec_driven" in data.get("routes", {})
def test_spec_driven_route_steps_order(self):
"""spec_driven route: шаги [constitution, spec, architect, task_decomposer]."""
"""spec_driven route: шаги [constitution, spec, architect, constitutional_validator, task_decomposer]."""
data = self._load_specialists()
steps = data["routes"]["spec_driven"]["steps"]
assert steps == ["constitution", "spec", "architect", "task_decomposer"]
assert steps == ["constitution", "spec", "architect", "constitutional_validator", "task_decomposer"]
def test_spec_driven_all_roles_exist(self):
"""Все роли в spec_driven route должны быть объявлены в specialists."""