From 9c9ff6eeba06b03380759f428d831491e2749fce Mon Sep 17 00:00:00 2001 From: hyungi Date: Fri, 12 Jun 2026 07:22:47 +0900 Subject: [PATCH] =?UTF-8?q?test(drain):=20classify=20=ED=95=A9=EB=A5=98=20?= =?UTF-8?q?=EB=B0=98=EC=98=81=20=E2=80=94=20=EA=B1=B0=EB=B6=80=20=EC=BC=80?= =?UTF-8?q?=EC=9D=B4=EC=8A=A4=EB=A5=BC=20extract=20=EB=A1=9C=20=EA=B5=90?= =?UTF-8?q?=EC=B2=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- tests/test_macbook_offload_deep_slot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_macbook_offload_deep_slot.py b/tests/test_macbook_offload_deep_slot.py index dd237f7..410259f 100644 --- a/tests/test_macbook_offload_deep_slot.py +++ b/tests/test_macbook_offload_deep_slot.py @@ -152,8 +152,9 @@ async def test_drain_requires_deep_slot(monkeypatch): @pytest.mark.asyncio async def test_drain_rejects_non_drain_stage(monkeypatch): + """classify 는 2026-06-12 fair-share 로 DRAIN_STAGES 합류 — 거부 대상은 extract 등.""" import workers.queue_drain as qd monkeypatch.setattr(qd, "settings", SimpleNamespace(ai=SimpleNamespace(deep=object()))) with pytest.raises(SystemExit): - await qd.drain("classify", 1) + await qd.drain("extract", 1)