diff --git a/scripts/ci/boot_smoke.py b/scripts/ci/boot_smoke.py index b924a1a..de96e70 100644 --- a/scripts/ci/boot_smoke.py +++ b/scripts/ci/boot_smoke.py @@ -106,7 +106,7 @@ async def main() -> None: "SELECT count(*) FROM pg_indexes WHERE indexname='uq_attempt_session_question'"))).scalar() mx = (await s.execute(text("SELECT max(version) FROM schema_migrations"))).scalar() print(f"SCHEMA OK — max_migration={mx} documents={docs} purge_col={purge} cand_qwen={cand} attempt_uq={uq}") - assert docs and purge == 1 and cand == 0 and uq == 1 and mx == 361, "FAIL: 기대 스키마 상태 불일치" + assert docs and purge == 1 and cand == 0 and uq == 1 and mx == 378, "FAIL: 기대 스키마 상태 불일치" # ── 5) /health 직접 호출 ────────────────────────────────────────────── health = await main.health_check()