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 851eb9e89fe42e0bf76792b4f44042bd2b8e2d69 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Dec 5 11:39:08 2022 +0100 (chores) camel-management: disabled flaky test on Github --- .../org/apache/camel/management/ManagedAggregateControllerTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/camel-management/src/test/java/org/apache/camel/management/ManagedAggregateControllerTest.java b/core/camel-management/src/test/java/org/apache/camel/management/ManagedAggregateControllerTest.java index 7e09037b8b8..facf117215e 100644 --- a/core/camel-management/src/test/java/org/apache/camel/management/ManagedAggregateControllerTest.java +++ b/core/camel-management/src/test/java/org/apache/camel/management/ManagedAggregateControllerTest.java @@ -27,6 +27,7 @@ import org.apache.camel.builder.RouteBuilder; import org.apache.camel.processor.aggregate.AggregateController; import org.apache.camel.processor.aggregate.DefaultAggregateController; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.condition.DisabledIfSystemProperty; import org.junit.jupiter.api.condition.DisabledOnOs; import org.junit.jupiter.api.condition.OS; @@ -35,6 +36,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; +@DisabledIfSystemProperty(named = "ci.env.name", matches = "github.com", disabledReason = "Flaky on Github CI") @DisabledOnOs(OS.AIX) public class ManagedAggregateControllerTest extends ManagementTestSupport {
