feat: add governed service workflow launcher

This commit is contained in:
2026-08-01 17:48:41 +02:00
parent 43c1f3fb72
commit 55f98d1b65
7 changed files with 272 additions and 1 deletions
+7
View File
@@ -8,6 +8,9 @@ from govoplan_workflow_engine.backend.manifest import (
INSTANCE_START_SCOPE,
get_manifest,
)
from govoplan_workflow_engine.backend.service_launcher import (
CAPABILITY_WORKFLOW_SERVICE_LAUNCHER,
)
from govoplan_core.core.workflows import (
CAPABILITY_WORKFLOW_RUNTIME_WORKER,
)
@@ -43,6 +46,10 @@ class WorkflowManifestTests(unittest.TestCase):
CAPABILITY_WORKFLOW_RUNTIME_WORKER,
manifest.capability_factories,
)
self.assertIn(
CAPABILITY_WORKFLOW_SERVICE_LAUNCHER,
manifest.capability_factories,
)
self.assertIsNone(manifest.frontend)
self.assertEqual((), manifest.nav_items)
self.assertIsNotNone(manifest.migration_spec)