summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-11-05 19:11:10 +0000
committerGitHub <noreply@github.com>2021-11-05 19:11:10 +0000
commit6f6f476bd68225f7e6d079c0cb996363e91c282c (patch)
treef8e196aa44c644493c78dbc1f2648cf3f8d4ac80
parent558c76b10c2e46c0096c2724d76695a625c4c7ca (diff)
parent242a5a62f8de51539d46c5f82356cb48780a08a1 (diff)
downloadnixpkgs-6f6f476bd68225f7e6d079c0cb996363e91c282c.tar
nixpkgs-6f6f476bd68225f7e6d079c0cb996363e91c282c.tar.gz
nixpkgs-6f6f476bd68225f7e6d079c0cb996363e91c282c.tar.bz2
nixpkgs-6f6f476bd68225f7e6d079c0cb996363e91c282c.tar.lz
nixpkgs-6f6f476bd68225f7e6d079c0cb996363e91c282c.tar.xz
nixpkgs-6f6f476bd68225f7e6d079c0cb996363e91c282c.tar.zst
nixpkgs-6f6f476bd68225f7e6d079c0cb996363e91c282c.zip
Merge pull request #144273 from risicle/ris-threadpoolctl-test-fix
python3Packages.threadpoolctl: disable test test_architecture
-rw-r--r--pkgs/development/python-modules/threadpoolctl/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/threadpoolctl/default.nix b/pkgs/development/python-modules/threadpoolctl/default.nix
index 7ba82aaec29..4a13af31216 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";