From 7cd79fda564c037c567ebd00175d7bdefaa6bd59 Mon Sep 17 00:00:00 2001 From: Xinyuan Tong <115166877+JustinTong0323@users.noreply.github.com> Date: Tue, 4 Aug 2026 05:21:25 +0800 Subject: [PATCH] [CI] Skip absent inline suites when loading timeouts (#33410) --- scripts/ci/utils/compute_partitions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/utils/compute_partitions.py b/scripts/ci/utils/compute_partitions.py index 752c1f954..ab8155dad 100644 --- a/scripts/ci/utils/compute_partitions.py +++ b/scripts/ci/utils/compute_partitions.py @@ -63,7 +63,7 @@ def load_run_timeouts(pr_test_yml_path: str) -> dict: with_ = job.get("with") or {} suite = with_.get("self_name", job_id) timeouts[suite] = int(with_["run_timeout_minutes"]) - for suite in _INLINE_SUITE_JOBS: + for suite in _INLINE_SUITE_JOBS.intersection(jobs): budgets = [ s["timeout-minutes"] for s in ((jobs.get(suite) or {}).get("steps") or [])