This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit abf54155502f0b2d0d5383e7f0615ebcb3fe7217 Author: JiriOndrusek <ondrusek.j...@gmail.com> AuthorDate: Wed Sep 20 13:51:45 2023 +0200 Disabled tests using kubernetess client, see #5318 --- integration-tests/camel-k-runtime/pom.xml | 3 +++ integration-tests/kubernetes/pom.xml | 3 +++ .../apache/camel/quarkus/component/kubernetes/it/KubernetesTest.java | 2 ++ integration-tests/master-openshift/pom.xml | 3 +++ .../apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java | 2 ++ 5 files changed, 13 insertions(+) diff --git a/integration-tests/camel-k-runtime/pom.xml b/integration-tests/camel-k-runtime/pom.xml index 5d98758812..d3049831d3 100644 --- a/integration-tests/camel-k-runtime/pom.xml +++ b/integration-tests/camel-k-runtime/pom.xml @@ -121,6 +121,8 @@ <quarkus.native.native-image-xmx>5g</quarkus.native.native-image-xmx> </properties> </profile> + <!-- + //https://github.com/apache/camel-quarkus/issues/5318 <profile> <id>native</id> <activation> @@ -154,6 +156,7 @@ </plugins> </build> </profile> + --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/kubernetes/pom.xml b/integration-tests/kubernetes/pom.xml index 1f41bc8f49..fc0b898453 100644 --- a/integration-tests/kubernetes/pom.xml +++ b/integration-tests/kubernetes/pom.xml @@ -81,6 +81,8 @@ <quarkus.native.native-image-xmx>5g</quarkus.native.native-image-xmx> </properties> </profile> + <!-- + //https://github.com/apache/camel-quarkus/issues/5318 <profile> <id>native</id> <activation> @@ -108,6 +110,7 @@ </plugins> </build> </profile> + --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/kubernetes/src/test/java/org/apache/camel/quarkus/component/kubernetes/it/KubernetesTest.java b/integration-tests/kubernetes/src/test/java/org/apache/camel/quarkus/component/kubernetes/it/KubernetesTest.java index 4529ac5abb..7c3df6b2c4 100644 --- a/integration-tests/kubernetes/src/test/java/org/apache/camel/quarkus/component/kubernetes/it/KubernetesTest.java +++ b/integration-tests/kubernetes/src/test/java/org/apache/camel/quarkus/component/kubernetes/it/KubernetesTest.java @@ -25,10 +25,12 @@ import io.quarkus.test.junit.QuarkusTest; import io.quarkus.test.kubernetes.client.KubernetesServerTestResource; import io.quarkus.test.kubernetes.client.KubernetesTestServer; 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/5318 @QuarkusTest @QuarkusTestResource(KubernetesServerTestResource.class) public class KubernetesTest { diff --git a/integration-tests/master-openshift/pom.xml b/integration-tests/master-openshift/pom.xml index ce8f5b2e4c..fc59424676 100644 --- a/integration-tests/master-openshift/pom.xml +++ b/integration-tests/master-openshift/pom.xml @@ -154,6 +154,8 @@ </plugins> </build> </profile> + <!-- + // https://github.com/apache/camel-quarkus/issues/5318 <profile> <id>native</id> <activation> @@ -191,6 +193,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/MasterOpenShiftTest.java b/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java index 73431d68a3..57157d0c77 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/5318 @QuarkusTestResource(MasterOpenShiftTestResource.class) @QuarkusTest class MasterOpenShiftTest {