Skip to content

Commit c7a84ba

Browse files
authored
Enforce ordering when running Pipeline slow tests (#8763)
update
1 parent 8b1e3ec commit c7a84ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/fetch_torch_cuda_pipeline_test_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def main():
8888
test_modules.extend(ALWAYS_TEST_PIPELINE_MODULES)
8989

9090
# Get unique modules
91-
test_modules = list(set(test_modules))
91+
test_modules = sorted(set(test_modules))
9292
print(json.dumps(test_modules))
9393

9494
save_path = f"{PATH_TO_REPO}/reports"

0 commit comments

Comments
 (0)