-
Notifications
You must be signed in to change notification settings - Fork 25
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 method to get component names from test manifest #361
Conversation
Signed-off-by: Sayali Gaikawad <[email protected]>
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #361 +/- ##
============================================
- Coverage 87.43% 86.04% -1.40%
Complexity 29 29
============================================
Files 81 81
Lines 207 215 +8
Branches 11 12 +1
============================================
+ Hits 181 185 +4
- Misses 19 22 +3
- Partials 7 8 +1 ☔ View full report in Codecov by Sentry. |
|
||
TestManifest(Map data) { | ||
this.name = data.name | ||
this.ci = data.ci ? new TestManifest.Ci(data.ci) : null | ||
this.components = data.components ? new TestManifest.Components(data.components) : null |
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.
A bit confusion.
Isnt data.components is already the components from TestManifest?
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.
No it was only present in buildManifest class not the Test Manifest class.
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.
Ok got it.
Signed-off-by: Sayali Gaikawad <[email protected]>
Signed-off-by: Sayali Gaikawad <[email protected]> (cherry picked from commit b195cb2) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Description
Add getComponentNames method from test Manifest
Issues Resolved
opensearch-project/opensearch-build#3461
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.