회기 무발화 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

@ -229,7 +229,7 @@ class LearnerSessionIdorTest(unittest.IsolatedAsyncioTestCase):
),
patch.object(sessions.turn_runtime, "runtime_fallback_allowed", return_value=True),
patch.object(
sessions.session_persistence,
sessions.session_evaluation_repository,
"load_session_evaluation",
AsyncMock(return_value=(None, False)),
) as load_session_evaluation,
@ -383,7 +383,7 @@ class LearnerSessionIdorTest(unittest.IsolatedAsyncioTestCase):
),
patch.object(sessions.turn_runtime, "runtime_fallback_allowed", return_value=True),
patch.object(
sessions.session_persistence,
sessions.session_evaluation_repository,
"load_session_evaluation",
AsyncMock(return_value=(evaluation_record, True)),
),
@ -432,7 +432,7 @@ class LearnerSessionIdorTest(unittest.IsolatedAsyncioTestCase):
AsyncMock(return_value=sess),
) as load_session,
patch.object(
sessions.session_persistence,
sessions.session_evaluation_repository,
"load_session_evaluation",
AsyncMock(return_value=(None, False)),
),