From 7c424e3f561fe46f4432350066287c3a8171a213 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 7 Jan 2021 07:20:25 +0100 Subject: [PATCH] python3Packages.zigpy-znp: disable test_force_remove test case The zigpy-znp package didn't sync up with changes to the zigpy 0.29 in time for the home-assistant 2021.1.0 release, so let's disable this test until the next release. Co-Authored-By: Matt Votava --- pkgs/development/python-modules/zigpy-znp/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/zigpy-znp/default.nix b/pkgs/development/python-modules/zigpy-znp/default.nix index 9b8e65e23d03..01b3e9c6137a 100644 --- a/pkgs/development/python-modules/zigpy-znp/default.nix +++ b/pkgs/development/python-modules/zigpy-znp/default.nix @@ -45,6 +45,11 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTests = [ + # zigpy-znp was too slow to sync up with the zigpy 0.29 release and has API breakage, remove >0.3.0 + "test_force_remove" + ]; + meta = with stdenv.lib; { description = "A library for zigpy which communicates with TI ZNP radios"; homepage = "https://github.com/zha-ng/zigpy-znp";