Skip to content

Commit e497173

Browse files
authored
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
1 parent 2df80ca commit e497173

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1+
import org.elasticsearch.gradle.test.RestIntegTestTask
2+
3+
// Skip test on FIPS FIXME https://github.com/elastic/elasticsearch/issues/32737
4+
if (project.inFipsJvm) {
5+
tasks.withType(RestIntegTestTask) {
6+
enabled = false
7+
}
8+
}
9+
110
group = "${group}.x-pack.qa.rolling-upgrade.with-system-key"

0 commit comments

Comments
 (0)