Final polish

This commit is contained in:
Johnny Fernandes
2026-05-14 21:16:03 +01:00
parent 3bff7eefb0
commit afd26f47d2
732 changed files with 4149 additions and 79134 deletions
+3 -2
View File
@@ -18,8 +18,9 @@ def parse_args():
def iter_config_paths(config_root: Path):
for sub in ("phase1", "phase2"):
yield from sorted((config_root / sub).glob("*.json"))
for sub in sorted(config_root.iterdir()):
if sub.is_dir() and sub.name not in ("smoke",):
yield from sorted(sub.glob("*.json"))
def main():