Skip to content

Commit

Permalink
Update boilerplate version (#5143)
Browse files Browse the repository at this point in the history
Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>
  • Loading branch information
flyte-bot and flyte-bot authored Apr 1, 2024
1 parent 31ad627 commit 215d386
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions boilerplate/flyte/end2end/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,11 @@ def schedule_workflow_groups(
workflow_group_item = list(
filter(lambda item: item["name"] == wf_group, parsed_manifest)
)
workflows = []
if workflow_group_item:
workflows = workflow_group_item[0]["examples"]
if not workflow_group_item:
continue
workflows = workflow_group_item[0].get("examples")
if not workflows:
continue
executions_by_wfgroup[wf_group] = [
execute_workflow(remote, tag, workflow[0], workflow[1], cluster_pool_name)
for workflow in workflows
Expand Down

0 comments on commit 215d386

Please sign in to comment.