From dfe0852e8ebc146fe0f913af54a541d423b5ef37 Mon Sep 17 00:00:00 2001 From: Michael Long Date: Wed, 9 Oct 2024 13:47:14 -0500 Subject: [PATCH] Fix issue with github running tests --- Tests/FactoryTests/FactoryFunctionalTests.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tests/FactoryTests/FactoryFunctionalTests.swift b/Tests/FactoryTests/FactoryFunctionalTests.swift index 9ecfa10d..f36a362d 100644 --- a/Tests/FactoryTests/FactoryFunctionalTests.swift +++ b/Tests/FactoryTests/FactoryFunctionalTests.swift @@ -1,3 +1,5 @@ +#if canImport(os) + import XCTest import os @testable import Factory @@ -61,3 +63,4 @@ final class FactoryFunctionalTests: XCTestCase { } +#endif