Skip to content

Commit 92e0ca2

Browse files
Skip flaky performance test on Windows
1 parent 5412cab commit 92e0ca2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Tests/SwiftFormatPerformanceTests/WhitespaceLinterPerformanceTests.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ import XCTest
66

77
final class WhitespaceLinterPerformanceTests: DiagnosingTestCase {
88
func testWhitespaceLinterPerformance() {
9+
#if os(Windows)
10+
// https://github.com/swiftlang/swift-format/issues/939
11+
throw XCTSkip("This test is flaky on Windows")
12+
#endif
913
let input = String(
1014
repeating: """
1115
import SomeModule

0 commit comments

Comments
 (0)