1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Test for circular dependencies using manifests (#22908)

* Integration dependencies

* Lint

* Lint

* Fix one test

* Lint

* Fix load custom component integration

Fix async issue
Add circular dependency detection in manifest validation

* Fix test

* Address review comment

* Apply suggestions from code review

Co-Authored-By: balloob <paulus@home-assistant.io>
This commit is contained in:
Paulus Schoutsen
2019-04-09 09:30:32 -07:00
committed by Jason Hu
parent 4110bd0acf
commit cac00f5b26
11 changed files with 314 additions and 89 deletions

View File

@@ -1,4 +1,5 @@
"""Component with embedded platforms."""
DOMAIN = 'test_embedded'
async def async_setup(hass, config):

View File

@@ -0,0 +1,8 @@
{
"domain": "test_package",
"name": "Test Package",
"documentation": "http://test-package.io",
"requirements": [],
"dependencies": [],
"codeowners": []
}