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 b3edaedbae063292c5ba6c9b4c298aa57577b141 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Wed Sep 21 09:40:20 2022 +0100 Disable OptaPlanner tests due to #4116 --- integration-tests/optaplanner/pom.xml | 18 ++++++++++++++++++ .../component/optaplanner/it/OptaplannerIT.java | 2 ++ .../component/optaplanner/it/OptaplannerTest.java | 2 ++ 3 files changed, 22 insertions(+) diff --git a/integration-tests/optaplanner/pom.xml b/integration-tests/optaplanner/pom.xml index 2719048892..98d629bdcf 100644 --- a/integration-tests/optaplanner/pom.xml +++ b/integration-tests/optaplanner/pom.xml @@ -70,7 +70,24 @@ </dependency> </dependencies> + <!-- TODO: Remove this: https://github.com/apache/camel-quarkus/issues/4116 --> + <build> + <plugins> + <plugin> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-maven-plugin</artifactId> + <executions> + <execution> + <id>quarkus-maven-plugin-disabled</id> + <phase>none</phase> + </execution> + </executions> + </plugin> + </plugins> + </build> + <profiles> + <!-- TODO: https://github.com/apache/camel-quarkus/issues/4116 <profile> <id>native</id> <activation> @@ -98,6 +115,7 @@ </plugins> </build> </profile> + --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/optaplanner/src/test/java/org/apache/camel/quarkus/component/optaplanner/it/OptaplannerIT.java b/integration-tests/optaplanner/src/test/java/org/apache/camel/quarkus/component/optaplanner/it/OptaplannerIT.java index ccb592c74e..ea74452cda 100644 --- a/integration-tests/optaplanner/src/test/java/org/apache/camel/quarkus/component/optaplanner/it/OptaplannerIT.java +++ b/integration-tests/optaplanner/src/test/java/org/apache/camel/quarkus/component/optaplanner/it/OptaplannerIT.java @@ -17,7 +17,9 @@ package org.apache.camel.quarkus.component.optaplanner.it; import io.quarkus.test.junit.QuarkusIntegrationTest; +import org.junit.jupiter.api.Disabled; +@Disabled("https://github.com/apache/camel-quarkus/issues/4116") @QuarkusIntegrationTest class OptaplannerIT extends OptaplannerTest { diff --git a/integration-tests/optaplanner/src/test/java/org/apache/camel/quarkus/component/optaplanner/it/OptaplannerTest.java b/integration-tests/optaplanner/src/test/java/org/apache/camel/quarkus/component/optaplanner/it/OptaplannerTest.java index 70ca5d0b1d..6e890febf8 100644 --- a/integration-tests/optaplanner/src/test/java/org/apache/camel/quarkus/component/optaplanner/it/OptaplannerTest.java +++ b/integration-tests/optaplanner/src/test/java/org/apache/camel/quarkus/component/optaplanner/it/OptaplannerTest.java @@ -21,10 +21,12 @@ import java.util.concurrent.TimeUnit; import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; import io.restassured.path.json.JsonPath; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.awaitility.Awaitility.await; +@Disabled("https://github.com/apache/camel-quarkus/issues/4116") @QuarkusTest class OptaplannerTest {