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 835ba3cec9ea91ceb37d72ec2dd20b5d5642123e Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Fri Apr 11 10:41:16 2025 +0100 Disable git integration tests due to #7257 --- .../test/java/org/apache/camel/quarkus/component/git/it/GitTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/git/src/test/java/org/apache/camel/quarkus/component/git/it/GitTest.java b/integration-tests/git/src/test/java/org/apache/camel/quarkus/component/git/it/GitTest.java index 93f6746692..f1d9d8d6f1 100644 --- a/integration-tests/git/src/test/java/org/apache/camel/quarkus/component/git/it/GitTest.java +++ b/integration-tests/git/src/test/java/org/apache/camel/quarkus/component/git/it/GitTest.java @@ -24,12 +24,14 @@ import java.util.UUID; import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; import io.restassured.http.ContentType; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.assertj.core.api.Assertions.assertThat; import static org.hamcrest.Matchers.containsString; import static org.hamcrest.core.Is.is; +@Disabled("https://github.com/apache/camel-quarkus/issues/7257") @QuarkusTest class GitTest {