Add check for integration config schema to hassfest (#93587)

Co-authored-by: epenet <6771947+epenet@users.noreply.github.com>
This commit is contained in:
Erik Montnemery
2023-06-12 10:26:02 +02:00
committed by GitHub
parent c79b9d0b07
commit f17773233b
2 changed files with 111 additions and 1 deletions

View File

@ -11,6 +11,7 @@ from . import (
bluetooth,
codeowners,
config_flow,
config_schema,
coverage,
dependencies,
dhcp,
@ -32,6 +33,7 @@ INTEGRATION_PLUGINS = [
application_credentials,
bluetooth,
codeowners,
config_schema,
dependencies,
dhcp,
json,
@ -43,7 +45,7 @@ INTEGRATION_PLUGINS = [
translations,
usb,
zeroconf,
config_flow,
config_flow, # This needs to run last, after translations are processed
]
HASS_PLUGINS = [
coverage,