From fb79c7de0ccdcf23b0dc08b2ee2fa7ace385525b Mon Sep 17 00:00:00 2001 From: Taylor Ho Date: Tue, 5 May 2026 11:08:46 -0700 Subject: [PATCH] fix(ci): mark openai/gpt-5 smoke test as flaky (#9027) Signed-off-by: Taylor Ho --- ui/desktop/tests/integration/test_providers_lib.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ui/desktop/tests/integration/test_providers_lib.ts b/ui/desktop/tests/integration/test_providers_lib.ts index 7a90ad104b..3c0718ac3c 100644 --- a/ui/desktop/tests/integration/test_providers_lib.ts +++ b/ui/desktop/tests/integration/test_providers_lib.ts @@ -69,7 +69,12 @@ function getProviders(): ProviderConfig[] { }, { provider: 'openai', - models: ['gpt-4o', 'gpt-4o-mini', { name: 'gpt-3.5-turbo', flaky: true }, 'gpt-5'], + models: [ + 'gpt-4o', + 'gpt-4o-mini', + { name: 'gpt-3.5-turbo', flaky: true }, + { name: 'gpt-5', flaky: true }, + ], available: () => hasEnv('OPENAI_API_KEY'), }, {