From 473c3a70c5bcc2f15fab762b66d7de05f9fe5dc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 15 Sep 2023 21:02:42 +0200 Subject: [PATCH] python310Packages.natsort: disable timing sensitive test --- pkgs/development/python-modules/natsort/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/natsort/default.nix b/pkgs/development/python-modules/natsort/default.nix index fc5d5ab4d590..b39460f71aa6 100644 --- a/pkgs/development/python-modules/natsort/default.nix +++ b/pkgs/development/python-modules/natsort/default.nix @@ -34,6 +34,12 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTests = [ + # timing sensitive test + # hypothesis.errors.DeadlineExceeded: Test took 524.23ms, which exceeds the deadline of 200.00ms + "test_string_component_transform_factory" + ]; + pythonImportsCheck = [ "natsort" ];