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:
parent
6a71a74ed8
commit
62cd0028a0
1 changed files with 2 additions and 0 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue