diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index 07cb9eae7f9..b711802386a 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -104,6 +104,8 @@ DISCOVERY_NOTIFICATION_ID = "config_entry_discovery" DISCOVERY_SOURCES = ( SOURCE_SSDP, SOURCE_ZEROCONF, + SOURCE_HOMEKIT, + SOURCE_DHCP, SOURCE_DISCOVERY, SOURCE_IMPORT, SOURCE_UNIGNORE, diff --git a/tests/test_config_entries.py b/tests/test_config_entries.py index 7bcc83048a4..391366683d5 100644 --- a/tests/test_config_entries.py +++ b/tests/test_config_entries.py @@ -2360,6 +2360,7 @@ async def test_async_setup_update_entry(hass): config_entries.SOURCE_DISCOVERY, config_entries.SOURCE_SSDP, config_entries.SOURCE_HOMEKIT, + config_entries.SOURCE_DHCP, config_entries.SOURCE_ZEROCONF, config_entries.SOURCE_HASSIO, ),