This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit f669972288a24e1481ce26ad65383dd226b4b7fd Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Fri Sep 16 09:30:31 2022 +0100 Disable master-openshift integration tests due to #4095 --- integration-tests/master-openshift/pom.xml | 3 ++- .../apache/camel/quarkus/component/master/it/MasterOpenShiftIT.java | 2 ++ .../apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/integration-tests/master-openshift/pom.xml b/integration-tests/master-openshift/pom.xml index 488a58b710..1a5d70f918 100644 --- a/integration-tests/master-openshift/pom.xml +++ b/integration-tests/master-openshift/pom.xml @@ -145,7 +145,7 @@ </plugins> </build> </profile> - + <!-- TODO: https://github.com/apache/camel-quarkus/issues/4095 <profile> <id>native</id> <activation> @@ -183,6 +183,7 @@ </plugins> </build> </profile> + --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftIT.java b/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftIT.java index 901a5fa025..3063aaa572 100644 --- a/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftIT.java +++ b/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftIT.java @@ -17,7 +17,9 @@ package org.apache.camel.quarkus.component.master.it; import io.quarkus.test.junit.QuarkusIntegrationTest; +import org.junit.jupiter.api.Disabled; +@Disabled("https://github.com/apache/camel-quarkus/issues/4095") @QuarkusIntegrationTest class MasterOpenShiftIT extends MasterOpenShiftTest { diff --git a/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java b/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java index 6714a4696c..2b25e2f195 100644 --- a/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java +++ b/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java @@ -36,6 +36,7 @@ import org.awaitility.Awaitility; import org.eclipse.microprofile.config.Config; import org.eclipse.microprofile.config.ConfigProvider; import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.condition.DisabledOnOs; import org.junit.jupiter.api.condition.OS; @@ -45,6 +46,7 @@ import org.zeroturnaround.exec.StartedProcess; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.emptyString; +@Disabled("https://github.com/apache/camel-quarkus/issues/4095") @QuarkusTestResource(MasterOpenShiftTestResource.class) @QuarkusTest class MasterOpenShiftTest {