Disable Node tests in AppVeyor for now
This commit is contained in:
parent
654b92779c
commit
f333c36fd0
|
@ -112,7 +112,10 @@ public class ParseTreesDescriptors {
|
|||
|
||||
@Override
|
||||
public boolean ignore(String targetName) {
|
||||
return !targetName.matches("Java|Python2|Python3|Node|Swift|CSharp|Dart");
|
||||
if(isAppVeyorCI())
|
||||
return "Node".equals(targetName) || "Swift".equals(targetName);
|
||||
else
|
||||
return !targetName.matches("Java|Python2|Python3|Node|Swift|CSharp|Dart");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue