Skip to content

Commit 2ba4bd8

Browse files
authored
Skip enterprise license tests in release build (#50163)
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. Relates: #50067 Resolves: #50151
1 parent f99f088 commit 2ba4bd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

x-pack/plugin/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ integTest.runner {
6969
if (!snapshot) {
7070
// these tests attempt to install basic/internal licenses signed against the dev/public.key
7171
// Since there is no infrastructure in place (anytime soon) to generate licenses using the production
72-
// private key, these tests are whitelisted in non-snapshot test runs
73-
blacklist.addAll(['xpack/15_basic/*', 'license/20_put_license/*'])
72+
// private key, these tests are blacklisted in non-snapshot test runs
73+
blacklist.addAll(['xpack/15_basic/*', 'license/20_put_license/*', 'license/30_enterprise_license/*'])
7474
}
7575
systemProperty 'tests.rest.blacklist', blacklist.join(',')
7676
dependsOn copyKeyCerts

0 commit comments

Comments
 (0)