We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0513aca commit 3c6795bCopy full SHA for 3c6795b
Benchmarks/ValkeyBenchmarks/ValkeyClientBenchmarks.swift
@@ -13,6 +13,7 @@
13
//===----------------------------------------------------------------------===//
14
15
import Benchmark
16
+import Foundation
17
import Logging
18
import NIOCore
19
import NIOPosix
@@ -23,7 +24,9 @@ import Valkey
23
24
func clientBenchmarks() {
25
makeClientGETSequentialBenchmark()
26
makeClient20ConcurrentGETBenchmark()
- makeClient50Concurrent20ConnectionGETBenchmark()
27
+ if ProcessInfo.processInfo.environment["CI"] == nil {
28
+ makeClient50Concurrent20ConnectionGETBenchmark()
29
+ }
30
}
31
32
@available(valkeySwift 1.0, *)
0 commit comments