From 1fe4483927abf3b2b4adec7b32b5e99b59ce2a24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 10 Jul 2026 19:56:44 +0200 Subject: [PATCH] python314Packages.samplerate-ledfx: ignore timing sensitive test --- pkgs/development/python-modules/samplerate-ledfx/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/samplerate-ledfx/default.nix b/pkgs/development/python-modules/samplerate-ledfx/default.nix index cb6fc5443fcb..13f342d05c5f 100644 --- a/pkgs/development/python-modules/samplerate-ledfx/default.nix +++ b/pkgs/development/python-modules/samplerate-ledfx/default.nix @@ -56,6 +56,11 @@ buildPythonPackage (finalAttrs: { pytestCheckHook ]; + disabledTestPaths = [ + # timing sensitive: AssertionError: Expected speedup > 1.0, got 0.68x + "tests/test_threading_performance.py::test_conditional_gil_release_large_data_threading" + ]; + pythonImportsCheck = [ "samplerate" ]; meta = {