[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:
Francisco Fernández Castaño 2021-06-08 18:25:09 +02:00 committed by GitHub
parent a420da886a
commit 622d466c29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 0 additions and 36 deletions

View File

@ -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 }
}

View File

@ -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 }
}

View File

@ -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 }
}

View File

@ -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 }
}

View File

@ -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 }
}