build: integrate workflow engine repository
Dependency Audit / dependency-audit (push) Successful in 2m26s
Deployment Installer / deployment-installer (push) Successful in 6s
Security Audit / security-audit (push) Successful in 10m0s

This commit is contained in:
2026-07-31 16:59:08 +02:00
parent 186aa104ce
commit efd734fad2
12 changed files with 55 additions and 8 deletions
+8
View File
@@ -88,9 +88,17 @@ class DependencyBoundaryDiscoveryTests(unittest.TestCase):
"govoplan-calendar",
"govoplan-poll",
"govoplan-scheduling",
"govoplan-workflow-engine",
):
self.assertIn(owner, boundary.REPOS)
def test_transitional_allowlist_entries_have_a_removal_target(self) -> None:
boundary = load_boundary_module()
for item in boundary.ALLOWLIST:
self.assertIn("remove", item.reason.casefold())
self.assertRegex(item.reason, r"#[0-9]+")
def test_webui_discovery_is_fail_closed(self) -> None:
boundary = load_boundary_module()
with tempfile.TemporaryDirectory(prefix="govoplan-boundary-webui-") as directory: