From 060ede8aaa6c44eb314f794de34511522e6baaa4 Mon Sep 17 00:00:00 2001 From: joshavant <830519+joshavant@users.noreply.github.com> Date: Wed, 25 Feb 2026 18:27:21 -0600 Subject: [PATCH] test(secrets): skip windows ACL-sensitive file-provider runtime tests --- src/secrets/runtime.test.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/secrets/runtime.test.ts b/src/secrets/runtime.test.ts index a1c8fcc35..9f2f02e82 100644 --- a/src/secrets/runtime.test.ts +++ b/src/secrets/runtime.test.ts @@ -86,6 +86,9 @@ describe("secrets runtime snapshot", () => { }); it("resolves file refs via configured file provider", async () => { + if (process.platform === "win32") { + return; + } const root = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-secrets-file-provider-")); const secretsPath = path.join(root, "secrets.json"); try { @@ -143,6 +146,9 @@ describe("secrets runtime snapshot", () => { }); it("fails when file provider payload is not a JSON object", async () => { + if (process.platform === "win32") { + return; + } const root = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-secrets-file-provider-bad-")); const secretsPath = path.join(root, "secrets.json"); try {