summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-02-03 00:37:52 +0100
committerGitHub <noreply@github.com>2023-02-03 00:37:52 +0100
commitf9e951c9bbf729144f5ede3dcc0b0696e732e85b (patch)
tree91f803427c4de8e6da168f7b9d28da1d19f414d7
parentd56f00451590ba5ad26716de0f5fe00f9bf3d4ad (diff)
parentfb3dcdb31b8a244863f49c0cc0f3b0e3b719e467 (diff)
downloadnixpkgs-f9e951c9bbf729144f5ede3dcc0b0696e732e85b.tar
nixpkgs-f9e951c9bbf729144f5ede3dcc0b0696e732e85b.tar.gz
nixpkgs-f9e951c9bbf729144f5ede3dcc0b0696e732e85b.tar.bz2
nixpkgs-f9e951c9bbf729144f5ede3dcc0b0696e732e85b.tar.lz
nixpkgs-f9e951c9bbf729144f5ede3dcc0b0696e732e85b.tar.xz
nixpkgs-f9e951c9bbf729144f5ede3dcc0b0696e732e85b.tar.zst
nixpkgs-f9e951c9bbf729144f5ede3dcc0b0696e732e85b.zip
Merge pull request #214271 from bcdarwin/pytorch-metric-learning-aarch-64-linux-mark-broken
python310Packages.pytorch-metric-learning: disable broken tests on aarch64-linux
-rw-r--r--pkgs/development/python-modules/pytorch-metric-learning/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pytorch-metric-learning/default.nix b/pkgs/development/python-modules/pytorch-metric-learning/default.nix
index 1e689e13167..d019e2b6291 100644
--- a/pkgs/development/python-modules/pytorch-metric-learning/default.nix
+++ b/pkgs/development/python-modules/pytorch-metric-learning/default.nix
@@ -1,4 +1,5 @@
-{ lib
+{ stdenv
+, lib
 , buildPythonPackage
 , fetchFromGitHub
 , isPy27
@@ -56,6 +57,10 @@ buildPythonPackage rec {
     "test_pca"
     # flaky
     "test_distributed_classifier_loss_and_miner"
+  ] ++ lib.optionals (stdenv.isLinux && stdenv.isAarch64) [
+    # RuntimeError: DataLoader worker (pid(s) <...>) exited unexpectedly
+    "test_global_embedding_space_tester"
+    "test_with_same_parent_label_tester"
   ];
 
   meta = {