From f732f8ea57b1c67fd4ebf53234c2647f5758077a Mon Sep 17 00:00:00 2001 From: Alison Shao <54658187+alisonshao@users.noreply.github.com> Date: Wed, 10 Dec 2025 08:09:03 -0800 Subject: [PATCH] Fix CI registry scan to only check test/registered directory (#14812) --- test/run_suite.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/run_suite.py b/test/run_suite.py index cef44e605..2ea9db458 100644 --- a/test/run_suite.py +++ b/test/run_suite.py @@ -105,10 +105,8 @@ def run_a_suite(args): auto_partition_id = args.auto_partition_id auto_partition_size = args.auto_partition_size - files = glob.glob("**/*.py", recursive=True) - ci_tests = filter_tests( - collect_tests(files, sanity_check=False), hw, suite, nightly - ) + files = glob.glob("registered/**/*.py", recursive=True) + ci_tests = filter_tests(collect_tests(files, sanity_check=True), hw, suite, nightly) test_files = [TestFile(t.filename, t.est_time) for t in ci_tests] if not test_files: