This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new f76f620001 Disable
JasyptSecureExtensionConfigTest.secureDirectComponentTimeout on GitHub CI
f76f620001 is described below
commit f76f6200012309ff63af06c2f5b68c960091f925
Author: James Netherton <[email protected]>
AuthorDate: Fri Feb 16 07:47:13 2024 +0000
Disable JasyptSecureExtensionConfigTest.secureDirectComponentTimeout on
GitHub CI
---
.../quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java
b/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java
index 1ec1da5a3e..b460754309 100644
---
a/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java
+++
b/integration-tests/jasypt/src/test/java/org/apache/camel/quarkus/component/jasypt/it/JasyptSecureExtensionConfigTest.java
@@ -20,6 +20,7 @@ import io.quarkus.test.junit.QuarkusTest;
import io.quarkus.test.junit.TestProfile;
import io.restassured.RestAssured;
import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledIfEnvironmentVariable;
import static org.hamcrest.Matchers.is;
@@ -35,6 +36,7 @@ class JasyptSecureExtensionConfigTest {
.body(is("camel"));
}
+ @DisabledIfEnvironmentVariable(named = "CI", matches = "true",
disabledReason = "https://github.com/apache/camel-quarkus/issues/5675")
@Test
void secureDirectComponentTimeout() throws InterruptedException {
RestAssured.given()