From f33a5d1e88de1227d8f26ee448cdaee172c8b670 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 3 Dec 2025 12:49:35 -0800 Subject: [PATCH] home-assistant.python.pkgs.pytest-homeassistant-custom-component: skip failing test --- .../home-assistant/pytest-homeassistant-custom-component.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/servers/home-assistant/pytest-homeassistant-custom-component.nix b/pkgs/servers/home-assistant/pytest-homeassistant-custom-component.nix index a08886fa5119..905a92dd469c 100644 --- a/pkgs/servers/home-assistant/pytest-homeassistant-custom-component.nix +++ b/pkgs/servers/home-assistant/pytest-homeassistant-custom-component.nix @@ -50,6 +50,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; + disabledTests = [ + # incompatible with Home Assistant 2025.12.0 + "test_entry_diagnostics" + ]; + meta = { changelog = "https://github.com/MatthewFlamm/pytest-homeassistant-custom-component/blob/${src.rev}/CHANGELOG.md"; description = "Package to automatically extract testing plugins from Home Assistant for custom component testing";