Solved integration tests

This commit is contained in:
2025-05-15 17:22:58 +02:00
parent 77e32cc5a6
commit c492c824b7
37 changed files with 12 additions and 5 deletions

View File

@@ -11,6 +11,9 @@ class TestApplicationIdConsistency(unittest.TestCase):
failed_roles = []
for role_path in ROLES_DIR.iterdir():
if role_path.name in ["docker-compose", "docker-central-database", "docker-repository-setup"]:
continue
if role_path.is_dir() and role_path.name.startswith("docker-"):
expected_id = role_path.name.replace("docker-", "", 1)
vars_file = role_path / "vars" / "main.yml"