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():