feat: expand module workflows, dynamic config, notifications and console API
This commit is contained in:
@@ -84,11 +84,9 @@ def _catalog_has_22_tasks(project_root: Path) -> bool:
|
||||
except Exception:
|
||||
return False
|
||||
scheduled = catalog.scheduled_workflows()
|
||||
return (
|
||||
len(scheduled) == 23
|
||||
and len(catalog.schedules) == 23
|
||||
and sum(schedule.enabled for schedule in catalog.schedules) == 23
|
||||
)
|
||||
scheduled_ids = {workflow.workflow_id for workflow in scheduled}
|
||||
schedule_ids = {schedule.workflow_id for schedule in catalog.schedules}
|
||||
return bool(scheduled) and scheduled_ids == schedule_ids
|
||||
|
||||
|
||||
def _scheduled_graphs_are_explicit(project_root: Path) -> bool:
|
||||
|
||||
Reference in New Issue
Block a user