From 025ecd87e6fa3eb48e373feb555cec2fcc61812d Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Mon, 8 Dec 2025 15:27:28 +0000 Subject: [PATCH] climate ignore_missing_translations --- tests/components/climate/test_init.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/components/climate/test_init.py b/tests/components/climate/test_init.py index fd53b29e140..661e0ee1110 100644 --- a/tests/components/climate/test_init.py +++ b/tests/components/climate/test_init.py @@ -49,6 +49,9 @@ from tests.common import ( ) +@pytest.mark.parametrize( + "ignore_missing_translations", ["component.climate.services.test_set_temperature."] +) async def test_set_temp_schema_no_req( hass: HomeAssistant, caplog: pytest.LogCaptureFixture ) -> None: @@ -66,6 +69,9 @@ async def test_set_temp_schema_no_req( assert len(calls) == 0 +@pytest.mark.parametrize( + "ignore_missing_translations", ["component.climate.services.test_set_temperature."] +) async def test_set_temp_schema( hass: HomeAssistant, caplog: pytest.LogCaptureFixture ) -> None: