Skip to content

Commit 3c6795b

Browse files
authored
Disable makeClient50Concurrent20ConnectionGETBenchmark in CI (#166)
It's results are very erratic Signed-off-by: Adam Fowler <[email protected]>
1 parent 0513aca commit 3c6795b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Benchmarks/ValkeyBenchmarks/ValkeyClientBenchmarks.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
//===----------------------------------------------------------------------===//
1414

1515
import Benchmark
16+
import Foundation
1617
import Logging
1718
import NIOCore
1819
import NIOPosix
@@ -23,7 +24,9 @@ import Valkey
2324
func clientBenchmarks() {
2425
makeClientGETSequentialBenchmark()
2526
makeClient20ConcurrentGETBenchmark()
26-
makeClient50Concurrent20ConnectionGETBenchmark()
27+
if ProcessInfo.processInfo.environment["CI"] == nil {
28+
makeClient50Concurrent20ConnectionGETBenchmark()
29+
}
2730
}
2831

2932
@available(valkeySwift 1.0, *)

0 commit comments

Comments
 (0)