회기 무발화 0턴 분리, 자기예측 락 불변식 및 TDD 회귀 검증 완료
Some checks failed
API contract / OpenAPI type drift (push) Failing after 3m27s

This commit is contained in:
Yun Chan 2026-09-08 23:28:06 +09:00
parent a479db7a5a
commit a0311c5957
100 changed files with 4884 additions and 11210 deletions

View file

@ -182,7 +182,7 @@ class TeacherDashboardGrowthTest(unittest.IsolatedAsyncioTestCase):
AsyncMock(return_value=({}, True)),
),
patch.object(
teacher.session_persistence,
teacher.session_evaluation_repository,
"list_session_evaluations",
AsyncMock(return_value=({}, True)),
),
@ -238,7 +238,7 @@ class TeacherDashboardGrowthTest(unittest.IsolatedAsyncioTestCase):
AsyncMock(return_value=({}, True)),
),
patch.object(
teacher.session_persistence,
teacher.session_evaluation_repository,
"list_session_evaluations",
AsyncMock(return_value=({}, True)),
),
@ -303,7 +303,7 @@ class TeacherDashboardGrowthTest(unittest.IsolatedAsyncioTestCase):
),
),
patch.object(
teacher.session_persistence,
teacher.session_evaluation_repository,
"list_session_evaluations",
AsyncMock(return_value=({}, True)),
),
@ -357,7 +357,7 @@ class TeacherDashboardGrowthTest(unittest.IsolatedAsyncioTestCase):
AsyncMock(return_value=({}, True)),
),
patch.object(
teacher.session_persistence,
teacher.session_evaluation_repository,
"list_session_evaluations",
AsyncMock(return_value=({}, True)),
),
@ -411,7 +411,7 @@ class TeacherDashboardGrowthTest(unittest.IsolatedAsyncioTestCase):
AsyncMock(return_value=({}, True)),
),
patch.object(
teacher.session_persistence,
teacher.session_evaluation_repository,
"list_session_evaluations",
AsyncMock(return_value=({sess.session_id: evaluation_record}, True)),
),
@ -459,7 +459,7 @@ class TeacherDashboardGrowthTest(unittest.IsolatedAsyncioTestCase):
AsyncMock(return_value=({}, True)),
),
patch.object(
teacher.session_persistence,
teacher.session_evaluation_repository,
"list_session_evaluations",
AsyncMock(return_value=({}, True)),
),
@ -507,7 +507,7 @@ class TeacherDashboardGrowthTest(unittest.IsolatedAsyncioTestCase):
AsyncMock(return_value=({}, True)),
),
patch.object(
teacher.session_persistence,
teacher.session_evaluation_repository,
"list_session_evaluations",
AsyncMock(return_value=({}, True)),
),
@ -539,7 +539,7 @@ class TeacherDashboardGrowthTest(unittest.IsolatedAsyncioTestCase):
AsyncMock(return_value=sess),
),
patch.object(
teacher.session_persistence,
teacher.session_evaluation_repository,
"load_session_evaluation",
AsyncMock(return_value=({"status": "ready"}, True)),
),
@ -604,7 +604,7 @@ class TeacherDashboardGrowthTest(unittest.IsolatedAsyncioTestCase):
AsyncMock(return_value=sess),
),
patch.object(
teacher.session_persistence,
teacher.session_evaluation_repository,
"load_session_evaluation",
AsyncMock(return_value=({"status": "error", "error": "timeout"}, True)),
),
@ -680,7 +680,7 @@ class TeacherDashboardGrowthTest(unittest.IsolatedAsyncioTestCase):
),
),
patch.object(
teacher.session_persistence,
teacher.session_evaluation_repository,
"list_session_evaluations",
AsyncMock(return_value=({}, True)),
),