From a0c61da3facfd56b00499140cd4d9abcfa11231f Mon Sep 17 00:00:00 2001 From: jianbin Date: Wed, 9 Oct 2024 16:41:59 +0800 Subject: [PATCH] test --- pom.xml | 1 + .../storage/redis/store/RedisVGroupMappingStoreManagerTest.java | 2 ++ 2 files changed, 3 insertions(+) diff --git a/pom.xml b/pom.xml index 8e78921ba96..d8f24521595 100644 --- a/pom.xml +++ b/pom.xml @@ -386,6 +386,7 @@ test report + report-aggregate diff --git a/server/src/test/java/org/apache/seata/server/storage/redis/store/RedisVGroupMappingStoreManagerTest.java b/server/src/test/java/org/apache/seata/server/storage/redis/store/RedisVGroupMappingStoreManagerTest.java index fac04d66de1..755c10759c6 100644 --- a/server/src/test/java/org/apache/seata/server/storage/redis/store/RedisVGroupMappingStoreManagerTest.java +++ b/server/src/test/java/org/apache/seata/server/storage/redis/store/RedisVGroupMappingStoreManagerTest.java @@ -21,11 +21,13 @@ import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.condition.EnabledIfSystemProperty; import org.springframework.boot.test.context.SpringBootTest; import java.util.Map; +@EnabledIfSystemProperty(named = "redisCaseEnabled", matches = "true") @SpringBootTest public class RedisVGroupMappingStoreManagerTest { private RedisVGroupMappingStoreManager redisVGroupMappingStoreManager;