Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/SkipBuild/Commands/SkipstoneCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading