From c5be45dfd2a357ba76bcc3dda281261fc6684f32 Mon Sep 17 00:00:00 2001 From: Val Alexander <68980965+BunsDev@users.noreply.github.com> Date: Sun, 22 Feb 2026 08:31:40 -0600 Subject: [PATCH] test: skip CLI auto-detect e2e tests on Windows (#23626) --- test/media-understanding.auto.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/media-understanding.auto.test.ts b/test/media-understanding.auto.test.ts index f27a36bae60..a98c05053e1 100644 --- a/test/media-understanding.auto.test.ts +++ b/test/media-understanding.auto.test.ts @@ -73,7 +73,7 @@ describe("media understanding auto-detect (e2e)", () => { tempPaths = []; }); - it("uses sherpa-onnx-offline when available", async () => { + it.skipIf(process.platform === "win32")("uses sherpa-onnx-offline when available", async () => { await withEnvSnapshot(async () => { const binDir = await createTrackedTempDir(tempPaths, "openclaw-bin-sherpa-"); const modelDir = await createTrackedTempDir(tempPaths, "openclaw-sherpa-model-"); @@ -107,7 +107,7 @@ describe("media understanding auto-detect (e2e)", () => { }); }); - it("uses whisper-cli when sherpa is missing", async () => { + it.skipIf(process.platform === "win32")("uses whisper-cli when sherpa is missing", async () => { await withEnvSnapshot(async () => { const binDir = await createTrackedTempDir(tempPaths, "openclaw-bin-whispercpp-"); const modelDir = await createTrackedTempDir(tempPaths, "openclaw-whispercpp-model-"); @@ -146,7 +146,7 @@ describe("media understanding auto-detect (e2e)", () => { }); }); - it("uses gemini CLI for images when available", async () => { + it.skipIf(process.platform === "win32")("uses gemini CLI for images when available", async () => { await withEnvSnapshot(async () => { const binDir = await createTrackedTempDir(tempPaths, "openclaw-bin-gemini-");