feat: expand module workflows, dynamic config, notifications and console API

This commit is contained in:
2026-09-04 09:49:37 +08:00
parent 8df5266abb
commit b124d757b0
309 changed files with 89358 additions and 6232 deletions
+3 -1
View File
@@ -51,11 +51,13 @@ def test_default_cli_registry_exposes_all_project_scheduled_workflows(
scheduled_ids = {
entry.workflow_id for entry in registry.catalog.scheduled_workflows()
}
assert len(scheduled_ids) == 23
assert len(scheduled_ids) == 27
assert scheduled_ids == {
schedule.workflow_id for schedule in registry.catalog.schedules
}
assert all(registry.is_registered(workflow_id) for workflow_id in scheduled_ids)
assert registry.is_registered("product.video_upload")
assert registry.is_registered("product.jd_video_upload")
def _catalog(tmp_path: Path) -> WorkflowCatalog: