From ffc7552e01899fbf17fec23bcd92665b36bf91fb Mon Sep 17 00:00:00 2001 From: Catherine Lee Date: Wed, 15 Oct 2025 19:57:41 +0000 Subject: [PATCH] See if we can handle uploading all test data (#165484) Fixes #ISSUE_NUMBER Pull Request resolved: https://github.com/pytorch/pytorch/pull/165484 Approved by: https://github.com/izaitsevfb --- tools/stats/upload_test_stats.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/stats/upload_test_stats.py b/tools/stats/upload_test_stats.py index 216444769720..b5802e803241 100644 --- a/tools/stats/upload_test_stats.py +++ b/tools/stats/upload_test_stats.py @@ -296,4 +296,12 @@ if __name__ == "__main__": remove_nan_inf(test_cases), ) + # Part of an experiment to see if we can handle all the data as is + upload_workflow_stats_to_s3( + args.workflow_run_id, + args.workflow_run_attempt, + "all_test_runs", + remove_nan_inf(test_cases), + ) + upload_additional_info(args.workflow_run_id, args.workflow_run_attempt, test_cases)