1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-12 06:43:48 +01:00

uart grouping

This commit is contained in:
J. Nick Koston
2025-10-08 18:06:10 -10:00
parent 11298ca485
commit 2679ce4836
2 changed files with 4 additions and 3 deletions

View File

@@ -24,6 +24,7 @@ import sys
# Add esphome to path
sys.path.insert(0, str(Path(__file__).parent.parent))
# pylint: disable=wrong-import-position
from script.analyze_component_buses import (
analyze_all_components,
create_grouping_signature,
@@ -235,7 +236,7 @@ def run_grouped_test(
tests_dir=tests_dir,
output_file=merged_config_file,
)
except Exception as e:
except Exception as e: # pylint: disable=broad-exception-caught
print(f"Error merging configs for {components}: {e}")
if not continue_on_fail:
raise