mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 10:59:40 +00:00
Bootstrap / Component setup async (#6264)
* Bootstrap / Entiy setup async * Cleanup add_job stuff / return task/future object * Address paulus comments / part 1 * fix install pip * Cleanup bootstrap / move config stuff to config.py * Make demo async * Further bootstrap improvement * Address Martin's comments * Fix initial tests * Fix final tests * Fix bug with prepare loader * Remove no longer needed things * Log error when invalid config * More cleanup * Cleanups platform events & fix lint * Use a non blocking add_entities callback for platform * Fix Autoamtion is setup befor entity is ready * Better automation fix * Address paulus comments * Typo * fix lint * rename functions * fix tests * fix test * change exceptions * fix spell
This commit is contained in:
committed by
Paulus Schoutsen
parent
383b0914b3
commit
41f558b181
@@ -5,7 +5,8 @@ from homeassistant.bootstrap import setup_component
|
||||
import homeassistant.components.sensor as sensor
|
||||
from homeassistant.components import pilight
|
||||
|
||||
from tests.common import get_test_home_assistant, assert_setup_component
|
||||
from tests.common import (
|
||||
get_test_home_assistant, assert_setup_component, mock_component)
|
||||
|
||||
HASS = None
|
||||
|
||||
@@ -23,7 +24,7 @@ def setup_function():
|
||||
global HASS
|
||||
|
||||
HASS = get_test_home_assistant()
|
||||
HASS.config.components = set(['pilight'])
|
||||
mock_component(HASS, 'pilight')
|
||||
|
||||
|
||||
# pylint: disable=invalid-name
|
||||
|
||||
Reference in New Issue
Block a user