From abbb7b14c75810d5cd304d935b39e5c850fe69f0 Mon Sep 17 00:00:00 2001 From: fhasse95 <49185957+fhasse95@users.noreply.github.com> Date: Tue, 18 Aug 2026 16:33:55 +0200 Subject: [PATCH] Support XCSkipTests under Mac Catalyst --- Sources/SkipBuild/Commands/SkipstoneCommand.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SkipBuild/Commands/SkipstoneCommand.swift b/Sources/SkipBuild/Commands/SkipstoneCommand.swift index 6cb53cb1..a889dc4d 100644 --- a/Sources/SkipBuild/Commands/SkipstoneCommand.swift +++ b/Sources/SkipBuild/Commands/SkipstoneCommand.swift @@ -687,7 +687,7 @@ struct SkipstoneCommand: BuildPluginOptionsCommand, StreamingCommand { let testHarnessOutputPath = try AbsolutePath(validating: testHarnessOutput) let harnessContents = """ // Auto-generated by Skip — do not edit - #if os(macOS) || os(Linux) // Skip transpiled tests only run on supported hosts + #if os(macOS) || targetEnvironment(macCatalyst) || os(Linux) // Skip transpiled tests only run on supported hosts import Foundation import XCTest import SkipTest