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:
parent
2df80ca7e3
commit
e49717393a
|
@ -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"
|
group = "${group}.x-pack.qa.rolling-upgrade.with-system-key"
|
||||||
|
|
Loading…
Reference in New Issue