-
Notifications
You must be signed in to change notification settings - Fork 107
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
Add ISM Policy #524
Add ISM Policy #524
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #524 +/- ##
==========================================
+ Coverage 57.29% 66.99% +9.70%
==========================================
Files 315 376 +61
Lines 9823 8850 -973
==========================================
+ Hits 5628 5929 +301
+ Misses 2902 1599 -1303
- Partials 1293 1322 +29
Flags with carried forward coverage won't be shown. Click here to find out more.
|
acf7f0a
to
738024f
Compare
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, not sure about that delete below.
I really think you should look into code generation.
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.
Let's get rid of the skip (#524 (comment)) and replace it with something explicit?
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
Signed-off-by: Jakob Hahn <jakob.hahn@hetzner.com>
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 is much butter, and you can merge as is if you want.
That said, I think the level of indirection of unreleased -> testintegpath is making it unnecessarily complicated. Why not just pass an optional test integ path?
make test-integ race=true testintegpath="./opensearchapi/..."
This still wouldn't convey the semantics of what we're trying to say, which is that when plugins are installed we want to run integration tests for plugins. I'd expect to be able to do this:
make test-integ // runs all, default, for developers
make test-integ-min // tests for a min distribution of OpenSearch (runs in all)
make test-integ-plugins // tests for plugins, does not include -min (runs in all except unreleased)
or with paths
make test-integ path=tests // runs all, default, for developers
make test-integ path=tests/min // tests for a min distribution of OpenSearch (runs in all)
make test-integ path=tests/plugins // tests for plugins, does not include -min (runs in all except unreleased)
(Please tell me if I am annoying ;))
Merging it but I will create a follow up PR for the testing stuff. |
Description
Issues Resolved
Closes #74
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.