You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2024/03/13 18:35:41 UTC

(camel-quarkus) 04/05: Disable java-joor-dsl tests on Windows due to #5872

This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 0e7617ba2999d7671521e7dc89cb75f42c58f7be
Author: James Netherton <ja...@gmail.com>
AuthorDate: Wed Mar 13 16:18:07 2024 +0000

    Disable java-joor-dsl tests on Windows due to #5872
---
 .../java/org/apache/camel/quarkus/dsl/java/joor/JavaJoorDslTest.java   | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/integration-tests/java-joor-dsl/src/test/java/org/apache/camel/quarkus/dsl/java/joor/JavaJoorDslTest.java b/integration-tests/java-joor-dsl/src/test/java/org/apache/camel/quarkus/dsl/java/joor/JavaJoorDslTest.java
index 767196aeaf..526fdb133c 100644
--- a/integration-tests/java-joor-dsl/src/test/java/org/apache/camel/quarkus/dsl/java/joor/JavaJoorDslTest.java
+++ b/integration-tests/java-joor-dsl/src/test/java/org/apache/camel/quarkus/dsl/java/joor/JavaJoorDslTest.java
@@ -21,9 +21,12 @@ import io.restassured.RestAssured;
 import org.apache.camel.dsl.java.joor.JavaRoutesBuilderLoader;
 import org.hamcrest.CoreMatchers;
 import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledOnOs;
+import org.junit.jupiter.api.condition.OS;
 
 import static org.hamcrest.CoreMatchers.equalTo;
 
+@DisabledOnOs(value = OS.WINDOWS, disabledReason = "https://github.com/apache/camel-quarkus/issues/5872")
 @QuarkusTest
 class JavaJoorDslTest {