Lines Matching refs:check
251 for check in check_files:
253 with open(check.filename, 'r') as f:
254 check.yaml = yaml.safe_load(f.read())
256 if 'runners' not in check.yaml:
258 elif check.board is False and 'run_once' not in check.yaml['runners']:
261 if 'priority' in check.yaml['runners']:
262 check.priority = check.yaml['runners']['priority']
264 …check.priority = BOARD_FILE_RUN_ONCE_DEFAULT_PRIORITY if check.board is True else SOC_FILE_RUN_ONC…
266 if check.priority == highest_priority:
269 elif check.priority > highest_priority:
270 highest_priority = check.priority
271 highest_entry = check
301 for check in board_names:
302 if re.match(fr'^{match}$', check) is not None:
376 for check in cmd.boards:
425 for check in cmd.boards: