mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-02 08:59:09 +00:00
This disables the x-pack rolling upgrade tests using a fips JVM, as there are problems creating the keystore. Relates #32737
11 lines
296 B
Groovy
11 lines
296 B
Groovy
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"
|