From 46f52db87c08b70852d71f09424e2b4a5c9bb5e6 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Wed, 15 Oct 2025 11:00:49 +0200 Subject: [PATCH] Mark tempres configuration as disabled by default in onewire (#154517) --- homeassistant/components/onewire/select.py | 1 + tests/components/onewire/test_select.py | 1 + 2 files changed, 2 insertions(+) diff --git a/homeassistant/components/onewire/select.py b/homeassistant/components/onewire/select.py index 7a33471dbe5..b3b3e166c36 100644 --- a/homeassistant/components/onewire/select.py +++ b/homeassistant/components/onewire/select.py @@ -40,6 +40,7 @@ ENTITY_DESCRIPTIONS: dict[str, tuple[OneWireEntityDescription, ...]] = { read_mode=READ_MODE_INT, options=["9", "10", "11", "12"], translation_key="tempres", + entity_registry_enabled_default=False, ), ), } diff --git a/tests/components/onewire/test_select.py b/tests/components/onewire/test_select.py index 6e1c3277c73..495366bd8b0 100644 --- a/tests/components/onewire/test_select.py +++ b/tests/components/onewire/test_select.py @@ -72,6 +72,7 @@ async def test_selects_delayed( @pytest.mark.parametrize("device_id", ["28.111111111111"]) +@pytest.mark.usefixtures("entity_registry_enabled_by_default") async def test_selection_option_service( hass: HomeAssistant, config_entry: MockConfigEntry,