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 18159898d10df121db50bf35296b5043c76dbf8e Author: James Netherton <[email protected]> AuthorDate: Wed Mar 15 19:36:19 2023 +0000 Temporarily disable dataformat integration tests due to #4662 --- integration-tests/dataformat/pom.xml | 2 ++ .../org/apache/camel/quarkus/component/dataformat/it/DataformatIT.java | 2 ++ .../apache/camel/quarkus/component/dataformat/it/DataformatTest.java | 2 ++ 3 files changed, 6 insertions(+) diff --git a/integration-tests/dataformat/pom.xml b/integration-tests/dataformat/pom.xml index 4929793f54..db9224d215 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/4662 <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/DataformatIT.java b/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatIT.java index 8676954dce..59b391c096 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/4662") @QuarkusIntegrationTest class DataformatIT extends DataformatTest { 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..6b57eb634b 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,12 +29,14 @@ 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; import static org.hamcrest.CoreMatchers.equalTo; +@Disabled("https://github.com/apache/camel-quarkus/issues/4662") @QuarkusTest class DataformatTest {
