about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-03-21 12:54:33 +0100
committerGitHub <noreply@github.com>2024-03-21 12:54:33 +0100
commitc7408bdbfb37f0e1f3846c2811f6c088ae9b0896 (patch)
treec5dc0ed929758021c67578920f503ab7c2d29c46
parent80f60ad1f4aa3a4a3070287e3180b7fd013cc506 (diff)
parentfe6372ea7fcd3f55b1000f7b3d0c863ad5e180d1 (diff)
downloadnixlib-c7408bdbfb37f0e1f3846c2811f6c088ae9b0896.tar
nixlib-c7408bdbfb37f0e1f3846c2811f6c088ae9b0896.tar.gz
nixlib-c7408bdbfb37f0e1f3846c2811f6c088ae9b0896.tar.bz2
nixlib-c7408bdbfb37f0e1f3846c2811f6c088ae9b0896.tar.lz
nixlib-c7408bdbfb37f0e1f3846c2811f6c088ae9b0896.tar.xz
nixlib-c7408bdbfb37f0e1f3846c2811f6c088ae9b0896.tar.zst
nixlib-c7408bdbfb37f0e1f3846c2811f6c088ae9b0896.zip
Merge pull request #297382 from dali99/pillow-heif-test
python3Packages.pillow-heif: disable time based decode test
-rw-r--r--pkgs/development/python-modules/pillow-heif/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pillow-heif/default.nix b/pkgs/development/python-modules/pillow-heif/default.nix
index e846109a31de..10edc6edb8bd 100644
--- a/pkgs/development/python-modules/pillow-heif/default.nix
+++ b/pkgs/development/python-modules/pillow-heif/default.nix
@@ -75,7 +75,10 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
-  disabledTests = lib.optionals stdenv.isDarwin [
+  disabledTests = [
+    # Time based
+    "test_decode_threads"
+  ] ++ lib.optionals stdenv.isDarwin [
     # https://github.com/bigcat88/pillow_heif/issues/89
     # not reproducible in nixpkgs
     "test_opencv_crash"