kin: auto-commit after pipeline

This commit is contained in:
Gros Frumos 2026-03-17 19:30:15 +02:00
parent e7c65c22e5
commit 0e522e54a9
7 changed files with 363 additions and 65 deletions

View file

@ -789,10 +789,10 @@ def test_schema_project_has_test_command_column(conn):
assert "test_command" in cols
def test_test_command_default_is_make_test(conn):
"""KIN-ARCH-008: новый проект без test_command получает дефолт 'make test'."""
def test_test_command_default_is_null(conn):
"""KIN-101: новый проект без test_command получает NULL (авто-определение фреймворка)."""
p = models.create_project(conn, "prj_tc", "TC Project", "/tmp/tc")
assert p["test_command"] == "make test"
assert p["test_command"] is None
def test_test_command_can_be_set(conn):