refactor: target workflow engine runtime

This commit is contained in:
2026-07-31 16:59:22 +02:00
parent 8f0a9636f5
commit 28a92feb32
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -161,7 +161,7 @@ DOCUMENTATION = (
"connectors", "connectors",
"files", "files",
"reporting", "reporting",
"workflow", "workflow_engine",
"risk_compliance", "risk_compliance",
"notifications", "notifications",
"policy", "policy",
@@ -262,7 +262,7 @@ manifest = ModuleManifest(
"reporting", "reporting",
"risk_compliance", "risk_compliance",
"search", "search",
"workflow", "workflow_engine",
), ),
optional_capabilities=( optional_capabilities=(
CAPABILITY_ACCESS_DIRECTORY, CAPABILITY_ACCESS_DIRECTORY,
+1 -1
View File
@@ -19,7 +19,7 @@ class DataflowManifestTests(unittest.TestCase):
self.assertEqual(manifest.dependencies, ()) self.assertEqual(manifest.dependencies, ())
self.assertIn("datasources", manifest.optional_dependencies) self.assertIn("datasources", manifest.optional_dependencies)
self.assertIn("reporting", manifest.optional_dependencies) self.assertIn("reporting", manifest.optional_dependencies)
self.assertIn("workflow", manifest.optional_dependencies) self.assertIn("workflow_engine", manifest.optional_dependencies)
self.assertEqual(manifest.frontend.package_name, "@govoplan/dataflow-webui") self.assertEqual(manifest.frontend.package_name, "@govoplan/dataflow-webui")
self.assertIsNotNone(manifest.route_factory) self.assertIsNotNone(manifest.route_factory)
self.assertIsNotNone(manifest.migration_spec) self.assertIsNotNone(manifest.migration_spec)