Lines Matching refs:check
286 for check in check_files:
288 with open(check.filename, 'r') as f:
289 check.yaml = yaml.safe_load(f.read())
291 if 'runners' not in check.yaml:
293 elif check.board is False and 'run_once' not in check.yaml['runners']:
296 if 'priority' in check.yaml['runners']:
297 check.priority = check.yaml['runners']['priority']
299 …check.priority = BOARD_FILE_RUN_ONCE_DEFAULT_PRIORITY if check.board is True else SOC_FILE_RUN_ONC…
301 if check.priority == highest_priority:
304 elif check.priority > highest_priority:
305 highest_priority = check.priority
306 highest_entry = check
336 for check in board_names:
337 if re.match(fr'^{match}$', check) is not None:
411 for check in cmd.boards:
466 for check in cmd.boards: