diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 18:31:59 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2025-08-09 19:08:53 +0200 |
| commit | a4afa02375eac602457ec0024a2c922a74a5720e (patch) | |
| tree | c9575331ab7cd7693fd91c01bb3011659a0ae51c | |
| parent | python3Packages.pybalboa: fix tests (diff) | |
| download | nixpkgs-a4afa02375eac602457ec0024a2c922a74a5720e.tar.gz | |
python3Packages.pydaikin: disable failing async tests
| -rw-r--r-- | pkgs/development/python-modules/pydaikin/default.nix | 6 |
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; { |
