-
Notifications
You must be signed in to change notification settings - Fork 279
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
Upload test results based on actual jenkins build number #2500
Conversation
Signed-off-by: Sayali Gaikawad <gaiksaya@amazon.com>
The |
Codecov Report
@@ Coverage Diff @@
## main #2500 +/- ##
=========================================
Coverage 94.47% 94.47%
Complexity 27 27
=========================================
Files 218 218
Lines 4449 4449
Branches 29 29
=========================================
Hits 4203 4203
Misses 240 240
Partials 6 6 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Signed-off-by: Sayali Gaikawad <gaiksaya@amazon.com>
Signed-off-by: Sayali Gaikawad <gaiksaya@amazon.com>
Hi @prudhvigodithi please review. I made the changes. Thanks! |
@@ -98,7 +98,7 @@ pipeline { | |||
uploadTestResults( | |||
buildManifestFileName: BUILD_MANIFEST, | |||
jobName: JOB_NAME | |||
) | |||
) |
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.
Extra space?
buildNumber: BUILD_ID | ||
) | ||
jobName: JOB_NAME | ||
) |
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.
Extra Space?
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.
Fixed it. Thanks!
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.
Just some spacing issues I am good with this change.
Thanks.
Signed-off-by: Sayali Gaikawad gaiksaya@amazon.com
Description
Looks like #2488 only fixed the message but not the actual path. This PR fixes the same for all tests.
The test_run_id was hardcoded to 1 for integ-test and bwc-test which now is changed to build_number of the job.
This will allow us to run any number of tests for same build_id without overwriting the results.
In case of performance tests since it is not integrated with test_recorder yet, the build_number is added as a part of the upload path.
Issues Resolved
List any issues this PR will resolve, e.g. Closes [...].
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.