Skip to content

Commit 0c822a8

Browse files
committed
Temporarily skip macro tests on Windows
We re-use the swift-syntax libs from the real build to avoid re-building it in these tests, but it currently only handles the SwiftPM build and not Windows. Temporarily continue skipping these on Windows to unblock CI.
1 parent a8528c9 commit 0c822a8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Sources/SKTestSupport/SkipUnless.swift

+6
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,12 @@ package actor SkipUnless {
140140
file: StaticString = #filePath,
141141
line: UInt = #line
142142
) async throws {
143+
#if os(Windows)
144+
try SkipUnless.platformIsWindows(
145+
"Temporarily skipping as we need to fix these tests to use the cmake-built swift-syntax libraries on Windows."
146+
)
147+
#endif
148+
143149
return try await shared.skipUnlessSupported(file: file, line: line) {
144150
do {
145151
let project = try await SwiftPMTestProject(

0 commit comments

Comments
 (0)