Disable testing conventions for idp in fips (#57663) (#57676)

Since we disable both integTest and test tasks. This should have
been part of #57048 but we missed it.
This commit is contained in:
Ioannis Kakavas 2020-06-04 20:51:38 +03:00 committed by GitHub
parent af9f9d7f03
commit 8afd55ebe6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -371,4 +371,6 @@ gradle.projectsEvaluated {
if (BuildParams.inFipsJvm) {
// We don't support the IDP in FIPS-140 mode, so no need to run tests
test.enabled = false
// We run neither integTests nor unit tests in FIPS-140 mode
testingConventions.enabled = false
}