From c7a84ba2f4c08900b8233224d7b05cfbb2a247de Mon Sep 17 00:00:00 2001 From: Dhruv Nair Date: Tue, 2 Jul 2024 10:55:50 +0530 Subject: [PATCH] Enforce ordering when running Pipeline slow tests (#8763) update --- utils/fetch_torch_cuda_pipeline_test_matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/fetch_torch_cuda_pipeline_test_matrix.py b/utils/fetch_torch_cuda_pipeline_test_matrix.py index 744201cb2d..235d346d93 100644 --- a/utils/fetch_torch_cuda_pipeline_test_matrix.py +++ b/utils/fetch_torch_cuda_pipeline_test_matrix.py @@ -88,7 +88,7 @@ def main(): test_modules.extend(ALWAYS_TEST_PIPELINE_MODULES) # Get unique modules - test_modules = list(set(test_modules)) + test_modules = sorted(set(test_modules)) print(json.dumps(test_modules)) save_path = f"{PATH_TO_REPO}/reports"