Skip enterprise license tests in release build (#50182)
The release builds use a production license key, and our rest test load licenses that are signed by the dev license key. This change adds the new enterprise license Rest tests to the blacklist on release builds. Backport of: #50163
This commit is contained in:
parent
4d22e3cd15
commit
a9d16ee895
|
@ -124,8 +124,8 @@ integTest.runner {
|
|||
if (!snapshot) {
|
||||
// these tests attempt to install basic/internal licenses signed against the dev/public.key
|
||||
// Since there is no infrastructure in place (anytime soon) to generate licenses using the production
|
||||
// private key, these tests are whitelisted in non-snapshot test runs
|
||||
blacklist.addAll(['xpack/15_basic/*', 'license/20_put_license/*'])
|
||||
// private key, these tests are blacklisted in non-snapshot test runs
|
||||
blacklist.addAll(['xpack/15_basic/*', 'license/20_put_license/*', 'license/30_enterprise_license/*'])
|
||||
}
|
||||
systemProperty 'tests.rest.blacklist', blacklist.join(',')
|
||||
dependsOn copyKeyCerts
|
||||
|
|
Loading…
Reference in New Issue