Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions scripts/ci/test_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,10 @@ def find_tags(self):
tag.exclude = True
tag.name = t

if not isinstance(x, dict) or x.get("files") is None:
logging.debug(f"Tag {t} is might be a standalone anchor, skipping...")
continue

# tag._match_fn(path) tests if the path matches files and/or
# files-regex
tag._match_fn = _get_match_fn(x.get("files"), x.get("files-regex"))
Expand Down
Loading