python3Packages.zha-quirks: disable failing tests

API compat issue with zigpy 1.5.1.
This commit is contained in:
Martin Weinelt
2026-06-03 04:47:22 +02:00
parent b9a3fee50a
commit c4f87a9bd4

View File

@@ -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" ];