From b3b65316f004b9c5ee783b0a8b140f3f955e54c3 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 17 Oct 2025 13:05:44 -1000 Subject: [PATCH] [ci] Fix test_build_components missing test files with hyphen naming pattern (#11329) --- script/test_build_components.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/test_build_components.py b/script/test_build_components.py index c98d425447..df092c091d 100755 --- a/script/test_build_components.py +++ b/script/test_build_components.py @@ -99,7 +99,8 @@ def find_component_tests( if not comp_dir.is_dir(): continue - for test_file in comp_dir.glob("test.*.yaml"): + # Find test files matching test.*.yaml or test-*.yaml patterns + for test_file in comp_dir.glob("test[.-]*.yaml"): component_tests[comp_dir.name].append(test_file) return dict(component_tests)