3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2026-07-31 08:33:59 +00:00

tests: Don't collect folders that start with skip_

This commit is contained in:
Krystine Sherwin 2026-07-16 11:45:17 +12:00
parent 6a71a74ed8
commit 62cd0028a0
No known key found for this signature in database

View file

@ -54,6 +54,8 @@ def collect(path):
for entry in path.glob("*"):
if entry.with_suffix(".sby").exists():
continue
if entry.name.startswith("skip_"):
continue
if entry.is_dir():
collect(entry)