-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Re-enable VerifyVersionConstantsIT #125605
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
Re-enable VerifyVersionConstantsIT #125605
Conversation
|
Pinging @elastic/es-core-infra (Team:Core/Infra) |
| /** | ||
| * Sets the version of Elasticsearch. Defaults to {@link Version#CURRENT}. | ||
| */ | ||
| T version(String version); |
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.
Added this as a convenience as many of our tests use org.elasticsearch.Version so then you have to disambiguate imports which is annoying. Plus, we almost always inject this into the build as a system property, which is a string to begin with.
| } | ||
| } | ||
|
|
||
| tasks.register("verifyDocsLuceneVersion") { |
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.
This got moved to the :docs project since it made much more sense for it to live there.
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.
LGTM
💔 Backport failed
You can use sqren/backport to manually backport by running |
(cherry picked from commit 6575106) # Conflicts: # qa/verify-version-constants/build.gradle
(cherry picked from commit 6575106) # Conflicts: # docs/build.gradle
💚 All backports created successfully
Questions ?Please refer to the Backport tool documentation |
(cherry picked from commit 6575106) # Conflicts: # qa/verify-version-constants/build.gradle
Ported this project over to new testing framework and also re-enabled it since it had been muted for awhile.
Closes #97736