From ba87cf86b92a7aec83f297f96ab399272298f025 Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Fri, 6 Feb 2026 07:42:04 +0100 Subject: [PATCH] Skip custom regex spoken form test on Linux in CI due to flakiness --- .../src/suite/scopeProvider/scopeProvider.vscode.test.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/cursorless-vscode-e2e/src/suite/scopeProvider/scopeProvider.vscode.test.ts b/packages/cursorless-vscode-e2e/src/suite/scopeProvider/scopeProvider.vscode.test.ts index f900397846..992c087165 100644 --- a/packages/cursorless-vscode-e2e/src/suite/scopeProvider/scopeProvider.vscode.test.ts +++ b/packages/cursorless-vscode-e2e/src/suite/scopeProvider/scopeProvider.vscode.test.ts @@ -31,6 +31,13 @@ suite("scope provider", async function () { ); test( "custom regex", - asyncSafety(() => runCustomRegexScopeInfoTest()), + asyncSafety(() => { + // FIXME: This test is flaky on Linux CI, so we skip it there for now + if (isCI() && isLinux()) { + this.ctx.skip(); + } + + return runCustomRegexScopeInfoTest(); + }), ); });