This is an automated email from the ASF dual-hosted git repository. jiriondrusek pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit a2668e885cad9bd796e779ffa642068902c5ac8e Author: JiriOndrusek <[email protected]> AuthorDate: Fri Jun 21 16:43:48 2024 +0200 Disabled native dataformat test --- integration-tests/dataformat/pom.xml | 5 +++-- .../apache/camel/quarkus/component/dataformat/it/DataformatIT.java | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/integration-tests/dataformat/pom.xml b/integration-tests/dataformat/pom.xml index 7eed5cf0ef..0914a75bb8 100644 --- a/integration-tests/dataformat/pom.xml +++ b/integration-tests/dataformat/pom.xml @@ -67,7 +67,8 @@ <profiles> - <profile> +<!-- https://github.com/apache/camel-quarkus/issues/6218 + <profile> <id>native</id> <activation> <property> @@ -93,7 +94,7 @@ </plugin> </plugins> </build> - </profile> + </profile>--> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatIT.java b/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatIT.java index 8676954dce..441d53bb66 100644 --- a/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatIT.java +++ b/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatIT.java @@ -17,7 +17,9 @@ package org.apache.camel.quarkus.component.dataformat.it; import io.quarkus.test.junit.QuarkusIntegrationTest; +import org.junit.jupiter.api.Disabled; +@Disabled //https://github.com/apache/camel-quarkus/issues/6218 @QuarkusIntegrationTest class DataformatIT extends DataformatTest {
