File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change
1
+ import org.elasticsearch.gradle.OS
2
+
1
3
evaluationDependsOn(xpackModule(' core' ))
2
4
3
5
apply plugin : ' elasticsearch.esplugin'
@@ -22,6 +24,8 @@ task internalClusterTestNoSecurityManager(type: Test) {
22
24
include noSecurityManagerITClasses
23
25
systemProperty ' es.set.netty.runtime.available.processors' , ' false'
24
26
systemProperty ' tests.security.manager' , ' false'
27
+ // Disable tests on windows https://github.com/elastic/elasticsearch/issues/44610
28
+ onlyIf { OS . WINDOWS . equals(OS . current()) == false }
25
29
}
26
30
27
31
// Instead we create a separate task to run the
@@ -34,6 +38,8 @@ task internalClusterTest(type: Test) {
34
38
include ' **/*IT.class'
35
39
exclude noSecurityManagerITClasses
36
40
systemProperty ' es.set.netty.runtime.available.processors' , ' false'
41
+ // Disable tests on windows https://github.com/elastic/elasticsearch/issues/44610
42
+ onlyIf { OS . WINDOWS . equals(OS . current()) == false }
37
43
}
38
44
39
45
check. dependsOn internalClusterTest
You can’t perform that action at this time.
0 commit comments