mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 17:57:11 +00:00
Fix bluetooth not being loaded with esphome proxies when removed from default_config (#85032)
* Fix bluetooth not being loaded with esphome proxies when removed from default_config fixes #84960 * actually commit the conftest change
This commit is contained in:
parent
94e6743a7b
commit
6b95fa5942
@ -7,7 +7,8 @@
|
|||||||
"zeroconf": ["_esphomelib._tcp.local."],
|
"zeroconf": ["_esphomelib._tcp.local."],
|
||||||
"dhcp": [{ "registered_devices": true }],
|
"dhcp": [{ "registered_devices": true }],
|
||||||
"codeowners": ["@OttoWinter", "@jesserockz"],
|
"codeowners": ["@OttoWinter", "@jesserockz"],
|
||||||
"after_dependencies": ["bluetooth", "zeroconf", "tag"],
|
"dependencies": ["bluetooth"],
|
||||||
|
"after_dependencies": ["zeroconf", "tag"],
|
||||||
"iot_class": "local_push",
|
"iot_class": "local_push",
|
||||||
"integration_type": "device",
|
"integration_type": "device",
|
||||||
"loggers": ["aioesphomeapi", "noiseprotocol"]
|
"loggers": ["aioesphomeapi", "noiseprotocol"]
|
||||||
|
@ -14,6 +14,11 @@ from homeassistant.core import HomeAssistant
|
|||||||
from tests.common import MockConfigEntry
|
from tests.common import MockConfigEntry
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(autouse=True)
|
||||||
|
def mock_bluetooth(enable_bluetooth):
|
||||||
|
"""Auto mock bluetooth."""
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
def esphome_mock_async_zeroconf(mock_async_zeroconf):
|
def esphome_mock_async_zeroconf(mock_async_zeroconf):
|
||||||
"""Auto mock zeroconf."""
|
"""Auto mock zeroconf."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user