From 1cd3444e4cf0babb6d2f70df9d82303c02a7a9a2 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Tue, 9 Jun 2026 16:56:55 -0400 Subject: [PATCH] test(rag): mark RAG tests with clean_baseline for batch isolation --- tests/test_rag_phase4_final_verify.py | 1 + tests/test_rag_phase4_stress.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/test_rag_phase4_final_verify.py b/tests/test_rag_phase4_final_verify.py index 6f9a1c47..4b2918b2 100644 --- a/tests/test_rag_phase4_final_verify.py +++ b/tests/test_rag_phase4_final_verify.py @@ -12,6 +12,7 @@ sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "s from src import api_hook_client @pytest.mark.integration +@pytest.mark.clean_baseline def test_phase4_final_verify(live_gui, live_gui_workspace): client = api_hook_client.ApiHookClient() assert client.wait_for_server(timeout=15), "Hook server did not start" diff --git a/tests/test_rag_phase4_stress.py b/tests/test_rag_phase4_stress.py index 94447d40..8ca9d20e 100644 --- a/tests/test_rag_phase4_stress.py +++ b/tests/test_rag_phase4_stress.py @@ -12,6 +12,7 @@ sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "s from src import api_hook_client @pytest.mark.integration +@pytest.mark.clean_baseline def test_rag_large_codebase_verification_sim(live_gui, live_gui_workspace): client = api_hook_client.ApiHookClient() assert client.wait_for_server(timeout=15), "Hook server did not start"