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 [])