Final polish
This commit is contained in:
@@ -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():
|
||||
|
||||
Reference in New Issue
Block a user