We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 827f4e7 commit 8c4bff8Copy full SHA for 8c4bff8
1 file changed
ietf/utils/test_runner.py
@@ -432,7 +432,11 @@ def get_template_paths(apps=None) -> list[str]:
432
relative_path = pathlib.Path(
433
dirpath.removeprefix(templatepath).lstrip("/")
434
)
435
- if apps and relative_path.parts[0] not in apps:
+ if (
436
+ apps
437
+ and len(relative_path.parts) > 0
438
+ and relative_path.parts[0] not in apps
439
+ ):
440
continue # skip uninteresting apps
441
for filename in files:
442
file_path = project_path / filename
0 commit comments