Disable FileTest on Win
This commit is contained in:
parent
e3e086829e
commit
b11c1e63ea
|
|
@ -23,6 +23,8 @@ import org.dom4j.Element;
|
||||||
import org.dom4j.io.SAXReader;
|
import org.dom4j.io.SAXReader;
|
||||||
import org.junit.jupiter.api.Assertions;
|
import org.junit.jupiter.api.Assertions;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.condition.DisabledOnOs;
|
||||||
|
import org.junit.jupiter.api.condition.OS;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
@ -36,6 +38,7 @@ import java.util.Objects;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
@DisabledOnOs(value = OS.WINDOWS)
|
||||||
class FileTest {
|
class FileTest {
|
||||||
private final static List<Pattern> ignoredModules = new LinkedList<>();
|
private final static List<Pattern> ignoredModules = new LinkedList<>();
|
||||||
private final static List<Pattern> ignoredModulesInDubboAll = new LinkedList<>();
|
private final static List<Pattern> ignoredModulesInDubboAll = new LinkedList<>();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue