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:42 UTC

(camel-quarkus) 05/05: Disable jsh-dsl tests on Windows due to #5873

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 57adf97dd61f613d16b741039e2491dd6821e757
Author: James Netherton <ja...@gmail.com>
AuthorDate: Wed Mar 13 16:18:23 2024 +0000

    Disable jsh-dsl tests on Windows due to #5873
---
 .../src/test/java/org/apache/camel/quarkus/dsl/jsh/JshDslTest.java     | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/integration-tests/jsh-dsl/src/test/java/org/apache/camel/quarkus/dsl/jsh/JshDslTest.java b/integration-tests/jsh-dsl/src/test/java/org/apache/camel/quarkus/dsl/jsh/JshDslTest.java
index 62a3c27b91..3b00a31128 100644
--- a/integration-tests/jsh-dsl/src/test/java/org/apache/camel/quarkus/dsl/jsh/JshDslTest.java
+++ b/integration-tests/jsh-dsl/src/test/java/org/apache/camel/quarkus/dsl/jsh/JshDslTest.java
@@ -21,7 +21,10 @@ import io.restassured.RestAssured;
 import org.apache.camel.dsl.jsh.JshRoutesBuilderLoader;
 import org.hamcrest.CoreMatchers;
 import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledOnOs;
+import org.junit.jupiter.api.condition.OS;
 
+@DisabledOnOs(value = OS.WINDOWS, disabledReason = "https://github.com/apache/camel-quarkus/issues/5873")
 @QuarkusTest
 class JshDslTest {