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 -3
View File
@@ -53,10 +53,10 @@ def test_catalog_and_scripts_work_after_project_and_data_roots_move(
assert workflows.returncode == 0, workflows.stderr
assert scripts.returncode == 0, scripts.stderr
assert len(json.loads(workflows.stdout)) == 23
assert len(json.loads(workflows.stdout)) == 27
commands = json.loads(scripts.stdout)
assert len(commands) == 33
assert len({row["command_id"] for row in commands}) == 33
assert len(commands) == 41
assert len({row["command_id"] for row in commands}) == 41
assert all(row["legacy_script_id"].startswith(f"{row['module']}:") for row in commands)