Commit aa9e1062 authored by haileyschoelkopf's avatar haileyschoelkopf
Browse files

fix error when using wildcard task names

parent f76941ef
......@@ -149,7 +149,11 @@ def cli_evaluate(args: Union[argparse.Namespace, None] = None) -> None:
if os.path.isfile(task):
config = utils.load_yaml_config(task)
task_names.append(config)
task_missing = [task for task in tasks_list if task not in task_names]
task_missing = [
task
for task in tasks_list
if task not in task_names and "*" not in task
]
if task_missing:
missing = ", ".join(task_missing)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment