From ea84c67f958feef14334c61230eeeb492dbef3b0 Mon Sep 17 00:00:00 2001 From: Jannis Harder Date: Thu, 18 Aug 2022 12:09:41 +0200 Subject: [PATCH] tests: Ignore .sby files starting with skip_ --- tests/make/collect_tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/make/collect_tests.py b/tests/make/collect_tests.py index b5f7699..2aeccee 100644 --- a/tests/make/collect_tests.py +++ b/tests/make/collect_tests.py @@ -18,6 +18,8 @@ def collect(path): if not SAFE_PATH.match(filename): print(f"skipping {filename!r}, use only [a-zA-Z0-9_./] in filenames") continue + if entry.name.startswith("skip_"): + continue tests.append(entry) for entry in path.glob("*"): if entry.is_dir():