-
Notifications
You must be signed in to change notification settings - Fork 25.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert x-pack fleet project to new test framework #125743
Conversation
Pinging @elastic/es-delivery (Team:Delivery) |
@breskeby as I mentioned in slack, I've collapsed the |
|
||
testClusters.configureEach { | ||
testDistribution = 'DEFAULT' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice
tasks.named('yamlRestCompatTest') { | ||
usesDefaultDistribution("to be triaged") | ||
} | ||
if (buildParams.inFipsJvm){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you forgot this to be ported to the fleet project build script?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like moving to the integ-test distro sorted this out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've added the fips label to ensure we test this still works.
Pinging @elastic/es-security (Team:Security) |
💔 Backport failed
You can use sqren/backport to manually backport by running |
(cherry picked from commit e75891e) # Conflicts: # x-pack/plugin/fleet/qa/rest/build.gradle # x-pack/plugin/fleet/qa/rest/src/yamlRestTest/resources/roles.yml # x-pack/plugin/fleet/roles.yml # x-pack/plugin/fleet/src/yamlRestTest/java/org/elasticsearch/xpack/fleet/FleetRestIT.java # x-pack/plugin/fleet/src/yamlRestTest/resources/roles.yml
💚 All backports created successfully
Questions ?Please refer to the Backport tool documentation |
(cherry picked from commit e75891e) # Conflicts: # x-pack/plugin/fleet/qa/rest/build.gradle # x-pack/plugin/fleet/qa/rest/src/yamlRestTest/resources/roles.yml # x-pack/plugin/fleet/roles.yml # x-pack/plugin/fleet/src/yamlRestTest/java/org/elasticsearch/xpack/fleet/FleetRestIT.java # x-pack/plugin/fleet/src/yamlRestTest/resources/roles.yml
(cherry picked from commit e75891e) # Conflicts: # x-pack/plugin/fleet/qa/rest/build.gradle
…125977) * Convert x-pack fleet project to new test framework (#125743) (cherry picked from commit e75891e) # Conflicts: # x-pack/plugin/fleet/qa/rest/build.gradle # x-pack/plugin/fleet/qa/rest/src/yamlRestTest/resources/roles.yml # x-pack/plugin/fleet/roles.yml # x-pack/plugin/fleet/src/yamlRestTest/java/org/elasticsearch/xpack/fleet/FleetRestIT.java # x-pack/plugin/fleet/src/yamlRestTest/resources/roles.yml * [CI] Auto commit changes from spotless --------- Co-authored-by: elasticsearchmachine <[email protected]>
…125979) * Convert x-pack fleet project to new test framework (#125743) (cherry picked from commit e75891e) # Conflicts: # x-pack/plugin/fleet/qa/rest/build.gradle # x-pack/plugin/fleet/qa/rest/src/yamlRestTest/resources/roles.yml # x-pack/plugin/fleet/roles.yml # x-pack/plugin/fleet/src/yamlRestTest/java/org/elasticsearch/xpack/fleet/FleetRestIT.java # x-pack/plugin/fleet/src/yamlRestTest/resources/roles.yml * [CI] Auto commit changes from spotless --------- Co-authored-by: elasticsearchmachine <[email protected]>
Converts
:x-pack:plugin:fleet
to new testing framework and removes dependency on default distribution. Also collapses the:qa:rest
project into the main module project for simplicity.