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 2023/09/07 12:26:49 UTC

[camel-quarkus] 04/04: Disable dataformat SnakeYAML JVM test and native profile due to #5278

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 8393735fed130195310aac4790dda43759f745db
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Sep 7 07:38:22 2023 +0100

    Disable dataformat SnakeYAML JVM test and native profile due to #5278
---
 integration-tests/dataformat/pom.xml                                    | 2 ++
 .../apache/camel/quarkus/component/dataformat/it/DataformatTest.java    | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/integration-tests/dataformat/pom.xml b/integration-tests/dataformat/pom.xml
index c6d7e3529e..1e392f03b1 100644
--- a/integration-tests/dataformat/pom.xml
+++ b/integration-tests/dataformat/pom.xml
@@ -67,6 +67,7 @@
 
 
     <profiles>
+        <!-- TODO: https://github.com/apache/camel-quarkus/issues/5278
         <profile>
             <id>native</id>
             <activation>
@@ -94,6 +95,7 @@
                 </plugins>
             </build>
         </profile>
+        -->
         <profile>
             <id>virtualDependencies</id>
             <activation>
diff --git a/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatTest.java b/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatTest.java
index 5556571bfa..52ec2c9856 100644
--- a/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatTest.java
+++ b/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatTest.java
@@ -29,6 +29,7 @@ import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import org.apache.commons.io.IOUtils;
 import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.params.ParameterizedTest;
 import org.junit.jupiter.params.provider.MethodSource;
@@ -42,6 +43,7 @@ class DataformatTest {
         return Stream.of("dataformat-component", "dsl");
     }
 
+    @Disabled("https://github.com/apache/camel-quarkus/issues/5278")
     @ParameterizedTest
     @MethodSource("snakeyamlRoutes")
     public void snakeYaml(String route) {