[CI] skip endpoint check due to test grouping (#13111)

This commit is contained in:
tomaszduda23
2026-01-09 23:13:37 +01:00
committed by GitHub
parent 32f90b2855
commit 3c9b300c46
+1 -1
View File
@@ -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}")