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
The following commit(s) were added to refs/heads/camel-main by this push:
new a75ee9656a Disabled native dataformat test
a75ee9656a is described below
commit a75ee9656a421abd64fde30d26dc97be7a402e1a
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 7180e285de..eb2f37ce81 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 {