-
Notifications
You must be signed in to change notification settings - Fork 25k
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 modules to use yamlRestTest #59089
Changes from all commits
73aee38
35e7f1e
6c1eccf
35d0417
5c010bc
3a287c9
3125782
0c5ecce
0333118
01c4caf
7dcdf8b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
apply plugin: 'elasticsearch.rest-resources' | ||
apply plugin: 'elasticsearch.yaml-rest-test' | ||
|
||
esplugin { | ||
description 'Adds aggregations whose input are a list of numeric fields and output includes a matrix.' | ||
|
@@ -28,3 +28,5 @@ restResources { | |
includeCore '_common', 'indices', 'cluster', 'index', 'search', 'nodes' | ||
} | ||
} | ||
|
||
integTest.enabled = false | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's creating this task? Can we structure things somehow such that projects only with yaml tests simply don't have this task at all? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is the PluginBuildPlugin :( I can't really remove it or conditionally apply it until we get I should be able to get to that after all of the yamlRestTests are converted. |
This file was deleted.
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.
doesn't yaml-rest-test apply the rest-resources plugin?
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.
It does, wasn't sure if we wanted to keep it explicit since most projects are configured in some way or if we should just let it be implicit via the yaml-rest-test.
I don't have a strong opinion either way.
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 don't think we need to be explicit. We are saying this is a "yaml test project", we should assume that plugin will apply any dependencies.