This is an automated email from the ASF dual-hosted git repository.
sergehuber pushed a commit to branch UNOMI-139-878-integration-tests
in repository https://gitbox.apache.org/repos/asf/unomi.git
The following commit(s) were added to
refs/heads/UNOMI-139-878-integration-tests by this push:
new 6a1ef0451 UNOMI-139: Run HealthCheckIT last in AllITs suite
6a1ef0451 is described below
commit 6a1ef045111a09196215c0c34e9e48d58458b13c
Author: Serge Huber <[email protected]>
AuthorDate: Thu May 21 06:37:19 2026 +0200
UNOMI-139: Run HealthCheckIT last in AllITs suite
Avoid heavy concurrent /health/check load immediately before TenantIT.
---
itests/src/test/java/org/apache/unomi/itests/AllITs.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/itests/src/test/java/org/apache/unomi/itests/AllITs.java
b/itests/src/test/java/org/apache/unomi/itests/AllITs.java
index c2f54ce8e..b450b3310 100644
--- a/itests/src/test/java/org/apache/unomi/itests/AllITs.java
+++ b/itests/src/test/java/org/apache/unomi/itests/AllITs.java
@@ -75,11 +75,11 @@ import org.junit.runners.Suite.SuiteClasses;
TenantCommandsIT.class,
RuleStatisticsCommandsIT.class,
OtherCommandsIT.class,
- HealthCheckIT.class,
LegacyQueryBuilderMappingIT.class,
TenantIT.class,
SchedulerIT.class,
EventsCollectorIT.class,
+ HealthCheckIT.class
})
public class AllITs {
}