This is an automated email from the ASF dual-hosted git repository. github-actions[bot] pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 70499a4eeae3aa36ceb0f3b4e293099dc55b8e43 Author: Jiri Ondrusek <[email protected]> AuthorDate: Thu Sep 3 10:33:38 2026 +0200 Disabled AVRO tests --- integration-tests/avro/pom.xml | 3 ++- .../test/java/org/apache/camel/quarkus/component/avro/it/AvroTest.java | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/integration-tests/avro/pom.xml b/integration-tests/avro/pom.xml index a171b6d167..ad1e32f497 100644 --- a/integration-tests/avro/pom.xml +++ b/integration-tests/avro/pom.xml @@ -94,6 +94,7 @@ </build> <profiles> + <!-- https://github.com/apache/camel-quarkus/issues/9103 <profile> <id>native</id> <activation> @@ -120,7 +121,7 @@ </plugin> </plugins> </build> - </profile> + </profile> --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/avro/src/test/java/org/apache/camel/quarkus/component/avro/it/AvroTest.java b/integration-tests/avro/src/test/java/org/apache/camel/quarkus/component/avro/it/AvroTest.java index 0c49f13364..1c8e2c5c70 100644 --- a/integration-tests/avro/src/test/java/org/apache/camel/quarkus/component/avro/it/AvroTest.java +++ b/integration-tests/avro/src/test/java/org/apache/camel/quarkus/component/avro/it/AvroTest.java @@ -18,10 +18,12 @@ package org.apache.camel.quarkus.component.avro.it; import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.hamcrest.Matchers.is; +@Disabled //https://github.com/apache/camel-quarkus/issues/9103 @QuarkusTest class AvroTest {
