diff --git a/tools/testing/gatekeeper/jobs.py b/tools/testing/gatekeeper/jobs.py index e6cc120801..cbf2b5a8f4 100644 --- a/tools/testing/gatekeeper/jobs.py +++ b/tools/testing/gatekeeper/jobs.py @@ -80,9 +80,7 @@ class Checker: else: # Not a required job return - # TODO: Check if multiple re-runs use the same "run_id". If so use - # job['run_attempt'] in case of matching "run_id". - elif job['run_id'] <= self.results[job_name]['run_id']: + elif job['run_id'] < self.results[job_name]['run_id']: # Newer results already stored print(f"older {job_name} - {job['status']} {job['conclusion']} " f"{job['id']}", file=sys.stderr)