kin: auto-commit after pipeline

This commit is contained in:
Gros Frumos 2026-03-17 20:58:06 +02:00
parent 0a5f58b7fe
commit e7e0342aeb
2 changed files with 7 additions and 7 deletions

View file

@ -204,9 +204,9 @@ class TestPipelineNoFramework:
assert result["success"] is True
# _run_project_tests NOT called
mock_tests.assert_not_called()
# Task NOT blocked
# Task should be in review (auto_eligible=False → runner sets status='review')
task = models.get_task(conn, "VDOL-001")
assert task["status"] != "blocked"
assert task["status"] == "review"
@patch("agents.runner._run_autocommit")
@patch("agents.runner._detect_test_command")