Fixed util- roles application ids

This commit is contained in:
Kevin Veen-Birkenbach 2025-07-10 14:35:31 +02:00
parent 3c3739c234
commit 81ab323c29
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
16 changed files with 22 additions and 7 deletions

View File

@ -0,0 +1 @@
application_id: desk-browser

View File

@ -0,0 +1 @@
application_id: desk-design

View File

@ -0,0 +1 @@
application_id: desk-dev-arduino

View File

@ -0,0 +1 @@
application_id: desk-dev-core

View File

@ -0,0 +1 @@
application_id: desk-dev-java

View File

@ -0,0 +1 @@
application_id: desk-dev-php

View File

@ -0,0 +1 @@
application_id: desk-dev-python

View File

@ -0,0 +1 @@
application_id: desk-dev-shell

View File

@ -0,0 +1 @@
application_id: desk-game-compose

View File

@ -1,7 +1,8 @@
gamer_default_games:
- 0ad
- warzone2100
- supertuxkart
- gnuchess
- sauerbraten
- mari0
- 0ad
- warzone2100
- supertuxkart
- gnuchess
- sauerbraten
- mari0
application_id: desk-game-os

View File

@ -0,0 +1 @@
application_id: desk-game-windows

View File

@ -0,0 +1 @@
application_id: desk-office-tools

View File

@ -0,0 +1 @@
application_id: gen-admin-network

View File

@ -0,0 +1 @@
application_id: gen-admin

View File

@ -0,0 +1 @@
application_id: srv-corporate-identity

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():