From 070895c80ff68f31681c976005218c36c2fb04a3 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Fri, 12 Jun 2026 09:17:25 +0200 Subject: [PATCH] python3Packages.zict: disable one test --- pkgs/development/python-modules/zict/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/zict/default.nix b/pkgs/development/python-modules/zict/default.nix index a5b9f41a374d..86b820395b40 100644 --- a/pkgs/development/python-modules/zict/default.nix +++ b/pkgs/development/python-modules/zict/default.nix @@ -28,6 +28,11 @@ buildPythonPackage (finalAttrs: { pytest-timeout ]; + disabledTests = [ + # timeout + "test_stress_different_keys_threadsafe" + ]; + meta = { description = "Mutable mapping tools"; homepage = "https://github.com/dask/zict";