Tests: Disable rolling upgrade tests with system key on fips JVM (#32775)

This disables the x-pack rolling upgrade tests using a fips JVM, as
there are problems creating the keystore.

Relates #32737
This commit is contained in:
Alexander Reelsen 2018-08-10 16:50:11 +02:00 committed by GitHub
parent 2df80ca7e3
commit e49717393a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -1 +1,10 @@
import org.elasticsearch.gradle.test.RestIntegTestTask
// Skip test on FIPS FIXME https://github.com/elastic/elasticsearch/issues/32737
if (project.inFipsJvm) {
tasks.withType(RestIntegTestTask) {
enabled = false
}
}
group = "${group}.x-pack.qa.rolling-upgrade.with-system-key"