From c4f87a9bd436c229423f62d3f92a0acc16670dc5 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 3 Jun 2026 04:47:22 +0200 Subject: [PATCH] python3Packages.zha-quirks: disable failing tests API compat issue with zigpy 1.5.1. --- .../python-modules/zha-quirks/default.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/zha-quirks/default.nix b/pkgs/development/python-modules/zha-quirks/default.nix index 26ac23392425..90a188eec7ce 100644 --- a/pkgs/development/python-modules/zha-quirks/default.nix +++ b/pkgs/development/python-modules/zha-quirks/default.nix @@ -46,13 +46,19 @@ buildPythonPackage rec { disabledTests = [ # AssertionError: expected call not found - "test_moes" "test_tuya_mcu_set_time" ]; disabledTestPaths = [ - # TypeError: unhashable type: 'dict' - "tests/test_quirks_v2.py" + # function signature mismatch with zigpy 1.5.1 + "tests/test_tuya.py" + "tests/test_tuya_builder.py" + "tests/test_tuya_dimmer.py" + "tests/test_tuya_rcbo.py" + "tests/test_tuya_siren.py" + "tests/test_tuya_spells.py" + "tests/test_tuya_trv.py" + "tests/test_tuya_valve.py" ]; pythonImportsCheck = [ "zhaquirks" ];