feat(LCHUX-413): Implement file upload functionality for raw test res…#1263
Merged
psakthivel04 merged 1 commit intomainfrom Mar 26, 2026
Merged
feat(LCHUX-413): Implement file upload functionality for raw test res…#1263psakthivel04 merged 1 commit intomainfrom
psakthivel04 merged 1 commit intomainfrom
Conversation
Konboi
approved these changes
Mar 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request adds new functionality to handle the uploading of raw test result files before parsing in the
smart_tests/commands/record/tests.pymodule. The changes introduce two new methods for uploading individual and multiple raw files, and integrate this upload step into the main workflow.New functionality for uploading raw test result files:
upload_raw_filemethod to handle uploading a single raw test result file to the server, including error handling and debug logging.upload_raw_filesmethod to iterate over and upload all raw test result files, with a check to skip uploads in dry-run mode.runmethod to callupload_raw_filesbefore parsing test results, ensuring raw files are uploaded as part of the workflow.…ults