Skip to content

Commit

Permalink
Disable FileTest on Win
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbumenJ committed Nov 22, 2022
1 parent e3e0868 commit b11c1e6
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
import org.dom4j.io.SAXReader;
import org.junit.jupiter.api.Assertions;
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.IOException;
Expand All @@ -36,6 +38,7 @@
import java.util.regex.Pattern;
import java.util.stream.Collectors;

@DisabledOnOs(value = OS.WINDOWS)
class FileTest {
private final static List<Pattern> ignoredModules = new LinkedList<>();
private final static List<Pattern> ignoredModulesInDubboAll = new LinkedList<>();
Expand Down

0 comments on commit b11c1e6

Please sign in to comment.