From d179f43e7c9850d9302b44709ffc9ed6b208cf98 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 22 Aug 2026 23:41:55 -0500 Subject: [PATCH] Correct the zero-partition comment: the skip fails CI extraction loudly, it does not feed it --- esphome/espidf/size_summary.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/esphome/espidf/size_summary.py b/esphome/espidf/size_summary.py index f558e724e2..5237495843 100644 --- a/esphome/espidf/size_summary.py +++ b/esphome/espidf/size_summary.py @@ -115,8 +115,9 @@ def print_summary(size_json: Path, partitions_csv: Path | None) -> None: _LOGGER.warning("Skipping Flash summary: %s", e) return if app_size <= 0: - # A malformed partition row parses to 0; a 0% bar would feed CI's - # memory-impact extraction fabricated data + # A "from 0 bytes" denominator is meaningless to a reader. The skip + # costs CI's memory-impact extraction its Flash match, which is the + # loud outcome a broken partition table deserves. _LOGGER.warning( "Skipping Flash summary: app partition size is %s in %s", app_size,