We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f3e6b6 commit a5b5166Copy full SHA for a5b5166
Tests/SwiftFormatPerformanceTests/WhitespaceLinterPerformanceTests.swift
@@ -5,7 +5,11 @@ import XCTest
5
@_spi(Testing) import _SwiftFormatTestSupport
6
7
final class WhitespaceLinterPerformanceTests: DiagnosingTestCase {
8
- func testWhitespaceLinterPerformance() {
+ func testWhitespaceLinterPerformance() throws {
9
+ #if os(Windows)
10
+ // https://github.com/swiftlang/swift-format/issues/939
11
+ throw XCTSkip("This test is flaky on Windows")
12
+ #endif
13
let input = String(
14
repeating: """
15
import SomeModule
0 commit comments