From 1cc5b8fc9072c091bd1a06ee1f55ae6cf7c1488b Mon Sep 17 00:00:00 2001 From: tvallin Date: Wed, 20 Nov 2024 11:53:01 +0100 Subject: [PATCH] Add windows disabled test documentation --- .../io/helidon/microprofile/telemetry/TestTracerAtStartup.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/microprofile/telemetry/src/test/java/io/helidon/microprofile/telemetry/TestTracerAtStartup.java b/microprofile/telemetry/src/test/java/io/helidon/microprofile/telemetry/TestTracerAtStartup.java index b8a4556a476..715648f6981 100644 --- a/microprofile/telemetry/src/test/java/io/helidon/microprofile/telemetry/TestTracerAtStartup.java +++ b/microprofile/telemetry/src/test/java/io/helidon/microprofile/telemetry/TestTracerAtStartup.java @@ -19,6 +19,8 @@ import io.helidon.microprofile.testing.junit5.HelidonTest; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.condition.DisabledOnOs; +import org.junit.jupiter.api.condition.OS; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.containsString; @@ -29,6 +31,7 @@ class TestTracerAtStartup { @Test + @DisabledOnOs(value = OS.WINDOWS, disabledReason = "https://github.com/helidon-io/helidon/issues/9513") void checkForFullFeaturedTracerAtStartup() { assertThat("Global tracer from start-up extension", TestExtension.globalTracerAtStartup.unwrap(io.opentelemetry.api.trace.Tracer.class).getClass().getName(),