[CI] Unmute failing windows tests (#73898)
This commit reverts #73709 since #73837 has reverted the changes that were causing these test failures.
This commit is contained in:
parent
a420da886a
commit
622d466c29
|
@ -6,7 +6,6 @@
|
|||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import org.elasticsearch.gradle.OS
|
||||
import org.elasticsearch.gradle.internal.MavenFilteringHack
|
||||
import org.elasticsearch.gradle.internal.info.BuildParams
|
||||
|
||||
|
@ -40,8 +39,3 @@ tasks.named("processTestResources").configure {
|
|||
inputs.properties(expansions)
|
||||
MavenFilteringHack.filter(it, expansions)
|
||||
}
|
||||
|
||||
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
|
||||
tasks.named("integTest").configure {
|
||||
onlyIf { OS.current() != OS.WINDOWS }
|
||||
}
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import org.elasticsearch.gradle.OS
|
||||
|
||||
evaluationDependsOn(xpackModule('core'))
|
||||
|
||||
apply plugin: 'elasticsearch.internal-es-plugin'
|
||||
|
@ -18,9 +16,3 @@ dependencies {
|
|||
compileOnly project(path: xpackModule('core'))
|
||||
testImplementation(testArtifact(project(xpackModule('core'))))
|
||||
}
|
||||
|
||||
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
|
||||
tasks.named("internalClusterTest").configure {
|
||||
onlyIf { OS.current() != OS.WINDOWS }
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import org.elasticsearch.gradle.OS
|
||||
|
||||
apply plugin: 'elasticsearch.internal-cluster-test'
|
||||
apply plugin: 'elasticsearch.java'
|
||||
|
||||
|
@ -7,8 +5,3 @@ dependencies {
|
|||
internalClusterTestImplementation testArtifact(project(':plugins:repository-azure'), 'internalClusterTest')
|
||||
internalClusterTestImplementation testArtifact(project(':x-pack:plugin:repository-encrypted'), 'test')
|
||||
}
|
||||
|
||||
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
|
||||
tasks.named("internalClusterTest").configure {
|
||||
onlyIf { OS.current() != OS.WINDOWS }
|
||||
}
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import org.elasticsearch.gradle.OS
|
||||
|
||||
apply plugin: 'elasticsearch.internal-cluster-test'
|
||||
apply plugin: 'elasticsearch.java'
|
||||
|
||||
|
@ -7,9 +5,3 @@ dependencies {
|
|||
internalClusterTestImplementation testArtifact(project(':plugins:repository-gcs'), 'internalClusterTest')
|
||||
internalClusterTestImplementation testArtifact(project(':x-pack:plugin:repository-encrypted'), 'test')
|
||||
}
|
||||
|
||||
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
|
||||
tasks.named("internalClusterTest").configure {
|
||||
onlyIf { OS.current() != OS.WINDOWS }
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import org.elasticsearch.gradle.OS
|
||||
|
||||
apply plugin: 'elasticsearch.internal-cluster-test'
|
||||
apply plugin: 'elasticsearch.java'
|
||||
|
||||
|
@ -7,8 +5,3 @@ dependencies {
|
|||
internalClusterTestImplementation testArtifact(project(':plugins:repository-s3'), 'internalClusterTest')
|
||||
internalClusterTestImplementation testArtifact(project(':x-pack:plugin:repository-encrypted'), 'test')
|
||||
}
|
||||
|
||||
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
|
||||
tasks.named("internalClusterTest").configure {
|
||||
onlyIf { OS.current() != OS.WINDOWS }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue