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
pull/85120/head
J. Nick Koston 2023-01-02 16:10:39 -10:00 committed by Paulus Schoutsen
parent 368ea0586d
commit 9a1669103b
2 changed files with 7 additions and 1 deletions

View File

@ -7,7 +7,8 @@
"zeroconf": ["_esphomelib._tcp.local."],
"dhcp": [{ "registered_devices": true }],
"codeowners": ["@OttoWinter", "@jesserockz"],
"after_dependencies": ["bluetooth", "zeroconf", "tag"],
"dependencies": ["bluetooth"],
"after_dependencies": ["zeroconf", "tag"],
"iot_class": "local_push",
"integration_type": "device",
"loggers": ["aioesphomeapi", "noiseprotocol"]

View File

@ -14,6 +14,11 @@ from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
@pytest.fixture(autouse=True)
def mock_bluetooth(enable_bluetooth):
"""Auto mock bluetooth."""
@pytest.fixture(autouse=True)
def esphome_mock_async_zeroconf(mock_async_zeroconf):
"""Auto mock zeroconf."""