From 62cd0028a0016948699eee3fd4f68face613ca9d Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Thu, 16 Jul 2026 11:45:17 +1200 Subject: [PATCH] tests: Don't collect folders that start 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 1f9b2c9..9ac0df0 100644 --- a/tests/make/collect_tests.py +++ b/tests/make/collect_tests.py @@ -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)