From 91d155ea92da372b319a79dd4eef69533ee15170 Mon Sep 17 00:00:00 2001 From: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Date: Fri, 3 May 2024 18:19:30 +0200 Subject: [PATCH] Avoid duplication in PR slow CI model list (#30634) update Co-authored-by: ydshieh --- utils/pr_slow_ci_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/pr_slow_ci_models.py b/utils/pr_slow_ci_models.py index f7cd960ec..391e99fc2 100644 --- a/utils/pr_slow_ci_models.py +++ b/utils/pr_slow_ci_models.py @@ -142,4 +142,4 @@ if __name__ == "__main__": new_model = get_new_model() specified_models = get_models(args.commit_message) models = ([] if new_model == "" else [new_model]) + specified_models - print(models) + print(sorted(set(models)))