Add hassfest requirements validation (#39329)

This commit is contained in:
Martin Hjelmare 2020-09-06 23:41:41 +02:00 committed by GitHub
parent 41abc08d63
commit 8eed7110a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 190 additions and 1 deletions

View file

@ -27,6 +27,7 @@ class Config:
specific_integrations: Optional[pathlib.Path] = attr.ib()
root: pathlib.Path = attr.ib()
action: str = attr.ib()
requirements: bool = attr.ib()
errors: List[Error] = attr.ib(factory=list)
cache: Dict[str, Any] = attr.ib(factory=dict)