diff --git a/x-pack/plugin/identity-provider/build.gradle b/x-pack/plugin/identity-provider/build.gradle index 2fe327e74c3..d8fbd4c37b6 100644 --- a/x-pack/plugin/identity-provider/build.gradle +++ b/x-pack/plugin/identity-provider/build.gradle @@ -368,4 +368,7 @@ gradle.projectsEvaluated { .findAll { it.path.startsWith(project.path + ":qa") } .each { check.dependsOn it.check } } - +if (BuildParams.inFipsJvm) { + // We don't support the IDP in FIPS-140 mode, so no need to run tests + test.enabled = false +}