From 0c7ae22f5def3153954ba842e6a4620f106e72c0 Mon Sep 17 00:00:00 2001 From: christine betts Date: Thu, 4 Dec 2025 14:40:36 -0500 Subject: [PATCH] Disable flaky extension reloading test on linux (#14528) Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- integration-tests/extensions-reload.test.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/integration-tests/extensions-reload.test.ts b/integration-tests/extensions-reload.test.ts index 43d3b4a278..eacaf67196 100644 --- a/integration-tests/extensions-reload.test.ts +++ b/integration-tests/extensions-reload.test.ts @@ -19,9 +19,14 @@ const itIf = (condition: boolean) => (condition ? it : it.skip); describe('extension reloading', () => { const sandboxEnv = env['GEMINI_SANDBOX']; - + // Fails in linux non-sandbox e2e tests + // TODO(#14527): Re-enable this once fixed // Fails in sandbox mode, can't check for local extension updates. - itIf((!sandboxEnv || sandboxEnv === 'false') && platform() !== 'win32')( + itIf( + (!sandboxEnv || sandboxEnv === 'false') && + platform() !== 'win32' && + platform() !== 'linux', + )( 'installs a local extension, updates it, checks it was reloaded properly', async () => { const serverA = new TestMcpServer();