[CI] Unmute failing windows tests (#73914)

This commit reverts #73709 since #73837 has reverted the changes
that were causing these test failures.
This commit is contained in:
Francisco Fernández Castaño 2021-06-09 09:24:28 +02:00 committed by GitHub
parent 7047e202ea
commit 837d762ef5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 13 deletions

View file

@ -7,7 +7,6 @@
*/ */
import org.elasticsearch.gradle.OS
import org.elasticsearch.gradle.internal.MavenFilteringHack import org.elasticsearch.gradle.internal.MavenFilteringHack
import org.elasticsearch.gradle.internal.info.BuildParams import org.elasticsearch.gradle.internal.info.BuildParams
@ -41,8 +40,3 @@ tasks.named("processTestResources").configure {
inputs.properties(expansions) inputs.properties(expansions)
MavenFilteringHack.filter(it, expansions) MavenFilteringHack.filter(it, expansions)
} }
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
tasks.named("integTest").configure {
onlyIf { OS.current() != OS.WINDOWS }
}

View file

@ -1,5 +1,3 @@
import org.elasticsearch.gradle.OS
evaluationDependsOn(xpackModule('core')) evaluationDependsOn(xpackModule('core'))
apply plugin: 'elasticsearch.internal-es-plugin' apply plugin: 'elasticsearch.internal-es-plugin'
@ -31,8 +29,3 @@ dependencies {
// for encrypted GCS repository integ tests // for encrypted GCS repository integ tests
internalClusterTestRuntimeOnly 'com.google.guava:guava:26.0-jre' internalClusterTestRuntimeOnly 'com.google.guava:guava:26.0-jre'
} }
// AwaitsFix https://github.com/elastic/elasticsearch/issues/73539
tasks.named("internalClusterTest").configure {
onlyIf { OS.current() != OS.WINDOWS }
}