From 51e2506afbe38af09f80da2defacdf279b0aadfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Hjelseth=20H=C3=B8yer?= Date: Wed, 14 Jan 2026 16:41:08 +0100 Subject: [PATCH] homevolt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Hjelseth Høyer --- CODEOWNERS | 2 ++ homeassistant/components/homevolt/quality_scale.yaml | 2 +- homeassistant/generated/integrations.json | 12 ++++++------ tests/components/homevolt/conftest.py | 1 - 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CODEOWNERS b/CODEOWNERS index 3483d0fe595..998dde41799 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -711,6 +711,8 @@ build.json @home-assistant/supervisor /tests/components/homematic/ @pvizeli /homeassistant/components/homematicip_cloud/ @hahn-th /tests/components/homematicip_cloud/ @hahn-th +/homeassistant/components/homevolt/ @danielhiversen +/tests/components/homevolt/ @danielhiversen /homeassistant/components/homewizard/ @DCSBL /tests/components/homewizard/ @DCSBL /homeassistant/components/honeywell/ @rdfurman @mkmer diff --git a/homeassistant/components/homevolt/quality_scale.yaml b/homeassistant/components/homevolt/quality_scale.yaml index a803b6ba772..cd12e70ac12 100644 --- a/homeassistant/components/homevolt/quality_scale.yaml +++ b/homeassistant/components/homevolt/quality_scale.yaml @@ -57,7 +57,7 @@ rules: entity-category: todo entity-device-class: done entity-disabled-by-default: todo - entity-translations: todo + entity-translations: done exception-translations: todo icon-translations: todo reconfiguration-flow: todo diff --git a/homeassistant/generated/integrations.json b/homeassistant/generated/integrations.json index 118e1e48655..884a3879332 100644 --- a/homeassistant/generated/integrations.json +++ b/homeassistant/generated/integrations.json @@ -2813,12 +2813,6 @@ "config_flow": true, "iot_class": "local_push" }, - "homevolt": { - "name": "Homevolt", - "integration_type": "device", - "config_flow": true, - "iot_class": "local_polling" - }, "homematic": { "name": "Homematic", "integrations": { @@ -2842,6 +2836,12 @@ "zwave" ] }, + "homevolt": { + "name": "Homevolt", + "integration_type": "device", + "config_flow": true, + "iot_class": "local_polling" + }, "homewizard": { "name": "HomeWizard", "integration_type": "device", diff --git a/tests/components/homevolt/conftest.py b/tests/components/homevolt/conftest.py index 7022d82a2d3..3286527992e 100644 --- a/tests/components/homevolt/conftest.py +++ b/tests/components/homevolt/conftest.py @@ -53,7 +53,6 @@ def mock_homevolt_client() -> Generator[MagicMock]: client = homevolt_mock.return_value client.base_url = "http://127.0.0.1" client.update_info = AsyncMock() - client.close_connection = AsyncMock() # Create a mock Device with sensors device = MagicMock(spec=Device)