From 242a5a62f8de51539d46c5f82356cb48780a08a1 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Tue, 2 Nov 2021 19:12:40 +0000 Subject: [PATCH] python3Packages.threadpoolctl: disable test test_architecture this test will only pass on a limited set of cpu models --- pkgs/development/python-modules/threadpoolctl/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/threadpoolctl/default.nix b/pkgs/development/python-modules/threadpoolctl/default.nix index 7ba82aaec296..4a13af31216a 100644 --- a/pkgs/development/python-modules/threadpoolctl/default.nix +++ b/pkgs/development/python-modules/threadpoolctl/default.nix @@ -23,6 +23,11 @@ buildPythonPackage rec { }; checkInputs = [ pytestCheckHook numpy scipy ]; + disabledTests = [ + # accepts a limited set of cpu models based on project + # developers' hardware + "test_architecture" + ]; meta = with lib; { homepage = "https://github.com/joblib/threadpoolctl";