From ca524233ec23cba3a1cd13c5d12af93aae5cd7d9 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 16 Apr 2019 14:11:58 -0700 Subject: [PATCH] Update components that can be used without being set up (#23133) --- script/hassfest/dependencies.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/script/hassfest/dependencies.py b/script/hassfest/dependencies.py index dfdd3434045..25553be1124 100644 --- a/script/hassfest/dependencies.py +++ b/script/hassfest/dependencies.py @@ -22,9 +22,15 @@ def grep_dir(path: pathlib.Path, glob_pattern: str, search_pattern: str) \ return found -# These components will always be set up ALLOWED_USED_COMPONENTS = { + # This component will always be set up 'persistent_notification', + # These allow to register things without being set up + 'conversation', + 'frontend', + 'hassio', + 'system_health', + 'websocket_api', }