1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-12 23:03:46 +01:00
This commit is contained in:
J. Nick Koston
2025-10-09 06:53:03 -10:00
parent 02c7b65699
commit 5c1bc2d8d1

View File

@@ -49,7 +49,9 @@ def create_intelligent_batches(
List of component batches (lists of component names) List of component batches (lists of component names)
""" """
# Analyze all components to get their bus signatures # Analyze all components to get their bus signatures
component_buses, non_groupable = analyze_all_components(tests_dir) component_buses, non_groupable, _direct_bus_components = analyze_all_components(
tests_dir
)
# Group components by their bus signature ONLY (ignore platform) # Group components by their bus signature ONLY (ignore platform)
# All platforms will be tested by test_build_components.py for each batch # All platforms will be tested by test_build_components.py for each batch