Let MQTT availability for `snips` be managed by dependencies (#91790)

MQTT availability for snips via dependencies
pull/91798/head
Jan Bouwhuis 2023-04-21 09:05:13 +02:00 committed by GitHub
parent 0552ec834d
commit 92bb61d25b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View File

@ -90,10 +90,6 @@ SERVICE_SCHEMA_FEEDBACK = vol.Schema(
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
"""Activate Snips component."""
# Make sure MQTT integration is enabled and the client is available
if not await mqtt.async_wait_for_mqtt_client(hass):
_LOGGER.error("MQTT integration is not available")
return False
async def async_set_feedback(site_ids, state):
"""Set Feedback sound state."""

View File

@ -46,7 +46,7 @@ async def test_snips_no_mqtt(
},
)
assert not result
assert "MQTT integration is not available" in caplog.text
assert "MQTT is not enabled" in caplog.text
async def test_snips_bad_config(