-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
Plugin development - extra REST tests are executed #53183
Labels
Comments
Pinging @elastic/es-core-infra (:Core/Infra/Plugins) |
jakelandis
added a commit
that referenced
this issue
Mar 5, 2020
This commit fixes ensures that for external builds (e.g. plugin development) that the REST tests that are copied are properly filtered to only include the API by default. The code prior to this change resulted in including both the API and tests since the copy.include resulted as an empty list by default since the stream is empty unless explicitly configured. related #52114 fixes #53183
jakelandis
added a commit
to jakelandis/elasticsearch
that referenced
this issue
Mar 5, 2020
This commit fixes ensures that for external builds (e.g. plugin development) that the REST tests that are copied are properly filtered to only include the API by default. The code prior to this change resulted in including both the API and tests since the copy.include resulted as an empty list by default since the stream is empty unless explicitly configured. related elastic#52114 fixes elastic#53183
jakelandis
added a commit
to jakelandis/elasticsearch
that referenced
this issue
Mar 5, 2020
This commit fixes ensures that for external builds (e.g. plugin development) that the REST tests that are copied are properly filtered to only include the API by default. The code prior to this change resulted in including both the API and tests since the copy.include resulted as an empty list by default since the stream is empty unless explicitly configured. related elastic#52114 fixes elastic#53183
jakelandis
added a commit
that referenced
this issue
Mar 5, 2020
This commit fixes ensures that for external builds (e.g. plugin development) that the REST tests that are copied are properly filtered to only include the API by default. The code prior to this change resulted in including both the API and tests since the copy.include resulted as an empty list by default since the stream is empty unless explicitly configured. related #52114 fixes #53183
jakelandis
added a commit
that referenced
this issue
Mar 5, 2020
This commit fixes ensures that for external builds (e.g. plugin development) that the REST tests that are copied are properly filtered to only include the API by default. The code prior to this change resulted in including both the API and tests since the copy.include resulted as an empty list by default since the stream is empty unless explicitly configured. related #52114 fixes #53183
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Starting with 7.6.1 some internal changes to how the REST tests are managed accidentally causes all of the REST tests (not just the plugin tests) to execute. This applies to any plugin that uses the REST test framework from build-tools. The plugin REST tests are still run.
The workaround is to add the following to
build.gradle
after applying the plugins:The text was updated successfully, but these errors were encountered: