Removed generation of alphanumeric users

This commit is contained in:
2025-07-03 20:00:05 +02:00
parent e032fd1aa4
commit a3fd74c2e0
5 changed files with 4 additions and 6 deletions

View File

@@ -43,7 +43,7 @@ class TestGenerateDefaultApplicationsUsers(unittest.TestCase):
When a users.yml exists with defined users, the script should inject a 'users'
mapping in the generated YAML, mapping each username to a Jinja2 reference.
"""
script_path = Path(__file__).resolve().parents[2] / "cli" / "generate-applications-defaults.py"
script_path = Path(__file__).resolve().parents[2] / "cli" / "generate_applications.py"
result = subprocess.run([
"python3", str(script_path),
"--roles-dir", str(self.roles_dir),

View File

@@ -29,7 +29,7 @@ class TestGenerateDefaultApplications(unittest.TestCase):
shutil.rmtree(self.temp_dir)
def test_script_generates_expected_yaml(self):
script_path = Path(__file__).resolve().parent.parent.parent / "cli" / "generate-applications-defaults.py"
script_path = Path(__file__).resolve().parent.parent.parent / "cli" / "generate_applications.py"
result = subprocess.run(
[