We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a6e516 commit 23ed7c4Copy full SHA for 23ed7c4
1 file changed
driver-sync/src/test/functional/com/mongodb/client/unified/UnifiedTestModifications.java
@@ -16,6 +16,7 @@
16
17
package com.mongodb.client.unified;
18
19
+import com.mongodb.ClusterFixture;
20
import org.opentest4j.AssertionFailedError;
21
22
import java.util.ArrayList;
@@ -199,6 +200,9 @@ public static void applyCustomizations(final TestDef def) {
199
200
// OpenTelemetry
201
def.skipNoncompliantReactive("withTransaction is not supported in the reactive driver unified test runner")
202
.file("open-telemetry/tests", "convenient transactions");
203
+ def.skipAccordingToSpec("Micrometer tests expect the network transport to be tcp")
204
+ .when(ClusterFixture::isUnixSocket)
205
+ .directory("open-telemetry/tests");
206
207
// TODO-JAVA-5712
208
0 commit comments