Fixed util- roles application ids

This commit is contained in:
2025-07-10 14:35:31 +02:00
parent 3c3739c234
commit 81ab323c29
16 changed files with 22 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ ROLES_DIR = Path(__file__).resolve().parent.parent.parent / "roles"
class TestApplicationIdConsistency(unittest.TestCase):
def test_application_id_matches_docker_prefix(self):
failed_roles = []
prefixes = ("web-app-", "web-svc-", "desk-")
prefixes = ("web-app-", "web-svc-", "desk-", "util-")
for role_path in ROLES_DIR.iterdir():
if not role_path.is_dir():