Add integration scaffolding script (#26777)

* Add integration scaffolding script

* Make easier to develop

* Update py.test -> pytest
This commit is contained in:
Paulus Schoutsen
2019-09-20 17:02:18 -07:00
committed by GitHub
parent 5cf9ba51df
commit 8502f7c7d4
15 changed files with 425 additions and 0 deletions

12
script/scaffold/model.py Normal file
View File

@ -0,0 +1,12 @@
"""Models for scaffolding."""
import attr
@attr.s
class Info:
"""Info about new integration."""
domain: str = attr.ib()
name: str = attr.ib()
codeowner: str = attr.ib()
requirement: str = attr.ib()