This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit f53a9203a0e271d69d78beec330480de91efc8ec Author: Otavio R. Piske <angusyo...@gmail.com> AuthorDate: Mon May 1 15:03:06 2023 +0200 (chores) camel-jms: disabled flaky tests on GH Actions Signed-off-by: Otavio R. Piske <angusyo...@gmail.com> --- .../org/apache/camel/component/jms/temp/TemporaryQueueRouteTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/camel-jms/src/test/java/org/apache/camel/component/jms/temp/TemporaryQueueRouteTest.java b/components/camel-jms/src/test/java/org/apache/camel/component/jms/temp/TemporaryQueueRouteTest.java index 8fe03e5e01b..16a12153db2 100644 --- a/components/camel-jms/src/test/java/org/apache/camel/component/jms/temp/TemporaryQueueRouteTest.java +++ b/components/camel-jms/src/test/java/org/apache/camel/component/jms/temp/TemporaryQueueRouteTest.java @@ -27,8 +27,10 @@ import org.apache.camel.test.infra.core.DefaultCamelContextExtension; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Order; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.condition.DisabledIfSystemProperty; import org.junit.jupiter.api.extension.RegisterExtension; +@DisabledIfSystemProperty(named = "ci.env.name", matches = "github.com", disabledReason = "Flaky on GitHub Actions") public class TemporaryQueueRouteTest extends AbstractJMSTest { @Order(2) @RegisterExtension