You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by li...@apache.org on 2021/02/07 16:22:15 UTC

[dubbo] branch 2.7.9-release updated: disable unstable file system ut

This is an automated email from the ASF dual-hosted git repository.

liujun pushed a commit to branch 2.7.9-release
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/2.7.9-release by this push:
     new f0483b8  disable unstable file system ut
f0483b8 is described below

commit f0483b80a32e813a4393879744e30d0084c3eafd
Author: ken.lj <ke...@gmail.com>
AuthorDate: Mon Feb 8 00:21:30 2021 +0800

    disable unstable file system ut
---
 .../config/configcenter/file/FileSystemDynamicConfigurationTest.java | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dubbo-common/src/test/java/org/apache/dubbo/common/config/configcenter/file/FileSystemDynamicConfigurationTest.java b/dubbo-common/src/test/java/org/apache/dubbo/common/config/configcenter/file/FileSystemDynamicConfigurationTest.java
index 20e127a..b35ebd1 100644
--- a/dubbo-common/src/test/java/org/apache/dubbo/common/config/configcenter/file/FileSystemDynamicConfigurationTest.java
+++ b/dubbo-common/src/test/java/org/apache/dubbo/common/config/configcenter/file/FileSystemDynamicConfigurationTest.java
@@ -23,8 +23,8 @@ import org.apache.dubbo.common.logger.LoggerFactory;
 import org.apache.commons.io.FileUtils;
 import org.junit.jupiter.api.AfterEach;
 import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
-import org.junit.jupiter.api.condition.DisabledIfEnvironmentVariable;
 
 import java.io.File;
 import java.util.TreeSet;
@@ -45,7 +45,8 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
  * {@link FileSystemDynamicConfiguration} Test
  */
 // Test often failed on Github Actions Platform because of file system on Azure
-@DisabledIfEnvironmentVariable(named = "DISABLE_FILE_SYSTEM_TEST", matches = "true")
+//@DisabledIfEnvironmentVariable(named = "DISABLE_FILE_SYSTEM_TEST", matches = "true")
+@Disabled
 public class FileSystemDynamicConfigurationTest {
 
     private final Logger logger = LoggerFactory.getLogger(getClass());