This is an automated email from the ASF dual-hosted git repository. shuber pushed a commit to branch opensearch-persistence in repository https://gitbox.apache.org/repos/asf/unomi.git
commit 46758474bb669ba0ee121d2219ce46d1c2ed05a2 Author: Serge Huber <shu...@jahia.com> AuthorDate: Tue Dec 31 16:23:58 2024 +0100 - Introduce new ProgressListener system to indicate the current progress status in the integration tests - Make sure the Unomi Management Service is started in IT tests before starting the unomi:start command - Add support for minimal cluster state to allow to start an OpenSearch cluster with yellow status in IT tests - Fix OpenSearch configuration prefix - Modify HealthCheck providers to only be available depending on the availability of the persistence implementation. - Fix integration tests to work properly with OpenSearch. - Fix OpenSearch persistence initial startup - Restructure startFeatures configuration to use arrays instead of complex parsing - Modify OpenSearch custom object mapping to serialize map entries that have null values (which is the default for the ElasticSearch implementation). - --- itests/src/test/java/org/apache/unomi/itests/AllITs.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 bc6614a17..6ea663f80 100644 --- a/itests/src/test/java/org/apache/unomi/itests/AllITs.java +++ b/itests/src/test/java/org/apache/unomi/itests/AllITs.java @@ -21,7 +21,6 @@ import org.apache.unomi.itests.graphql.*; import org.apache.unomi.itests.migration.Migrate16xTo220IT; import org.apache.unomi.itests.migration.MigrationIT; import org.junit.runner.RunWith; -import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; /** @@ -29,7 +28,7 @@ import org.junit.runners.Suite.SuiteClasses; * * @author Sergiy Shyrkov */ -@RunWith(Suite.class) +@RunWith(ProgressSuite.class) @SuiteClasses({ Migrate16xTo220IT.class, MigrationIT.class,