From 3c9b300c462e86316c5b154c485fff53bec1a7be Mon Sep 17 00:00:00 2001 From: tomaszduda23 Date: Fri, 9 Jan 2026 23:13:37 +0100 Subject: [PATCH] [CI] skip endpoint check due to test grouping (#13111) --- esphome/components/zigbee/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/zigbee/__init__.py b/esphome/components/zigbee/__init__.py index 1a017f2ab2..cf37e890c4 100644 --- a/esphome/components/zigbee/__init__.py +++ b/esphome/components/zigbee/__init__.py @@ -69,7 +69,7 @@ def validate_number_of_ep(config: ConfigType) -> None: raise cv.Invalid( "Single endpoint is not supported https://github.com/Koenkk/zigbee2mqtt/issues/29888" ) - if count > CONF_MAX_EP_NUMBER: + if count > CONF_MAX_EP_NUMBER and not CORE.testing_mode: raise cv.Invalid(f"Maximum number of end points is {CONF_MAX_EP_NUMBER}")