This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 0ebd4e0feccbcc5cf40d32c84e1bd99ae9376a70 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Tue Jul 23 10:02:58 2024 +0100 Disable MicroProfile Fault Tolerance tests due to #6285 --- integration-tests/microprofile-fault-tolerance/pom.xml | 2 ++ .../it/faulttolerance/MicroProfileFaultToleranceConfigurationIT.java | 2 ++ .../it/faulttolerance/MicroProfileFaultToleranceConfigurationTest.java | 2 ++ .../microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java | 2 ++ .../microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java | 2 ++ 5 files changed, 10 insertions(+) diff --git a/integration-tests/microprofile-fault-tolerance/pom.xml b/integration-tests/microprofile-fault-tolerance/pom.xml index b5a43ca17c..90a53d2e60 100644 --- a/integration-tests/microprofile-fault-tolerance/pom.xml +++ b/integration-tests/microprofile-fault-tolerance/pom.xml @@ -70,6 +70,7 @@ </dependencies> <profiles> + <!-- TODO: https://github.com/apache/camel-quarkus/issues/6285 <profile> <id>native</id> <activation> @@ -97,6 +98,7 @@ </plugins> </build> </profile> + --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationIT.java b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationIT.java index 3abcc18d1d..ed483fb3b8 100644 --- a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationIT.java +++ b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationIT.java @@ -17,7 +17,9 @@ package org.apache.camel.quarkus.component.microprofile.it.faulttolerance; import io.quarkus.test.junit.QuarkusIntegrationTest; +import org.junit.jupiter.api.Disabled; +@Disabled("https://github.com/apache/camel-quarkus/issues/6285") @QuarkusIntegrationTest class MicroProfileFaultToleranceConfigurationIT extends MicroProfileFaultToleranceConfigurationTest { } diff --git a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTest.java b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTest.java index ea1a3c3398..5c91c3bde3 100644 --- a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTest.java +++ b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTest.java @@ -19,10 +19,12 @@ package org.apache.camel.quarkus.component.microprofile.it.faulttolerance; import io.quarkus.test.junit.QuarkusTest; import io.quarkus.test.junit.TestProfile; 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/6285") @QuarkusTest @TestProfile(MicroProfileFaultToleranceConfigurationTestProfile.class) class MicroProfileFaultToleranceConfigurationTest { diff --git a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java index 1362ada770..53c6a396b3 100644 --- a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java +++ b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java @@ -17,7 +17,9 @@ package org.apache.camel.quarkus.component.microprofile.it.faulttolerance; import io.quarkus.test.junit.QuarkusIntegrationTest; +import org.junit.jupiter.api.Disabled; +@Disabled("https://github.com/apache/camel-quarkus/issues/6285") @QuarkusIntegrationTest class MicroprofileFaultToleranceIT extends MicroprofileFaultToleranceTest { diff --git a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java index 4d5378c12a..b264f0d376 100644 --- a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java +++ b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java @@ -18,6 +18,7 @@ package org.apache.camel.quarkus.component.microprofile.it.faulttolerance; import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; +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; @@ -26,6 +27,7 @@ import org.junit.jupiter.params.provider.ValueSource; import static org.apache.camel.quarkus.component.microprofile.it.faulttolerance.MicroProfileFaultToleranceRoutes.EXCEPTION_MESSAGE; import static org.hamcrest.Matchers.is; +@Disabled("https://github.com/apache/camel-quarkus/issues/6285") @QuarkusTest class MicroprofileFaultToleranceTest {