summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 18:31:59 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 19:08:53 +0200
commita4afa02375eac602457ec0024a2c922a74a5720e (patch)
treec9575331ab7cd7693fd91c01bb3011659a0ae51c
parentpython3Packages.pybalboa: fix tests (diff)
downloadnixpkgs-a4afa02375eac602457ec0024a2c922a74a5720e.tar.gz
python3Packages.pydaikin: disable failing async tests
-rw-r--r--pkgs/development/python-modules/pydaikin/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pydaikin/default.nix b/pkgs/development/python-modules/pydaikin/default.nix
index 877da83d4cba..66342b59f205 100644
--- a/pkgs/development/python-modules/pydaikin/default.nix
+++ b/pkgs/development/python-modules/pydaikin/default.nix
@@ -46,6 +46,12 @@ buildPythonPackage rec {
pytestCheckHook
];
+ disabledTests = [
+ # Failed: async def functions are not natively supported.
+ "test_power_sensors"
+ "test_device_factory"
+ ];
+
pythonImportsCheck = [ "pydaikin" ];
meta = with lib; {