1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-12 14:53:49 +01:00

uart grouping

This commit is contained in:
J. Nick Koston
2025-10-08 18:09:11 -10:00
parent af61d7eb45
commit fd9f7db668
2 changed files with 11 additions and 31 deletions

View File

@@ -333,11 +333,11 @@ def run_grouped_component_tests(
if platform_filter and not platform.startswith(platform_filter):
continue
# Only group if component has groupable bus configs
# Only group if component has valid bus configs
if buses:
signature = create_grouping_signature({platform: buses}, platform)
# Only add to grouped_components if signature is non-empty
# (empty means component has no groupable bus configurations)
# (empty means component has no valid bus configurations)
if signature:
grouped_components[(platform, signature)].append(component)