feat: complete production workflow migration

This commit is contained in:
2026-08-06 14:29:57 +08:00
parent 7f215e79c4
commit 8df5266abb
448 changed files with 56937 additions and 14619 deletions
+4 -4
View File
@@ -52,11 +52,11 @@ def test_every_workflow_and_manual_script_resolves_inside_new_project() -> None:
/ "gyxx_flow"
/ "modules"
/ workflow.module
/ "runtime"
/ workflow.entry
).resolve(strict=True)
assert target.is_relative_to(PROJECT_ROOT)
scripts = ScriptCatalog.discover_default()
assert len(scripts.scripts) >= 100
assert all(script.path.is_relative_to(PROJECT_ROOT) for script in scripts.scripts)
commands = ScriptCatalog.load_default()
assert len(commands.scripts) == 33
assert len(commands.command_ids) == len(set(commands.command_ids))
assert all(command.path.is_relative_to(PROJECT_ROOT) for command in commands.scripts)