From ee689081113f92b31b44c87a9306d0e1585d9296 Mon Sep 17 00:00:00 2001 From: Konstantin Wohlwend Date: Sat, 18 Apr 2026 17:32:40 -0700 Subject: [PATCH] Skip Swift tests temporarily --- apps/e2e/tests/general/sdk-implementations.test.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/e2e/tests/general/sdk-implementations.test.ts b/apps/e2e/tests/general/sdk-implementations.test.ts index 4225511d6..080d0fccf 100644 --- a/apps/e2e/tests/general/sdk-implementations.test.ts +++ b/apps/e2e/tests/general/sdk-implementations.test.ts @@ -4,6 +4,8 @@ import * as path from "path"; import { describe } from "vitest"; import { it } from "../helpers"; +const TEMPORARILY_SKIPPED_SDKS = new Set(["swift"]); + // Find all SDK implementations that have a package.json function findSdkImplementations(): string[] { const implementationsDir = path.resolve(__dirname, "../../../../sdks/implementations"); @@ -17,6 +19,10 @@ function findSdkImplementations(): string[] { for (const entry of entries) { if (entry.isDirectory()) { + if (TEMPORARILY_SKIPPED_SDKS.has(entry.name)) { + continue; + } + const packageJsonPath = path.join(implementationsDir, entry.name, "package.json"); if (fs.existsSync(packageJsonPath)) { sdkDirs.push(entry.name);