summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorRobert T. McGibbon <rmcgibbo@gmail.com>2021-05-09 10:28:05 -0400
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-13 09:54:08 -0700
commit99c0fb9059be2986eb443ae8700f5d4b9d23f53f (patch)
tree595346cb7dcaa16a2e7aa75e8c0d8f04d0d4a805 /pkgs/development
parenteca1520ebbccb9bc678885426173b089c2401009 (diff)
downloadnixpkgs-99c0fb9059be2986eb443ae8700f5d4b9d23f53f.tar
nixpkgs-99c0fb9059be2986eb443ae8700f5d4b9d23f53f.tar.gz
nixpkgs-99c0fb9059be2986eb443ae8700f5d4b9d23f53f.tar.bz2
nixpkgs-99c0fb9059be2986eb443ae8700f5d4b9d23f53f.tar.lz
nixpkgs-99c0fb9059be2986eb443ae8700f5d4b9d23f53f.tar.xz
nixpkgs-99c0fb9059be2986eb443ae8700f5d4b9d23f53f.tar.zst
nixpkgs-99c0fb9059be2986eb443ae8700f5d4b9d23f53f.zip
python3Packages.pytorch-metric-learning: fix build
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/pytorch-metric-learning/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytorch-metric-learning/default.nix b/pkgs/development/python-modules/pytorch-metric-learning/default.nix
index 285602bce4a..fd2c80af890 100644
--- a/pkgs/development/python-modules/pytorch-metric-learning/default.nix
+++ b/pkgs/development/python-modules/pytorch-metric-learning/default.nix
@@ -41,10 +41,16 @@ buildPythonPackage rec {
   disabledTests = [
     # requires FAISS (not in Nixpkgs)
     "test_accuracy_calculator_and_faiss"
+    "test_global_embedding_space_tester"
+    "test_with_same_parent_label_tester"
     # require network access:
     "test_get_nearest_neighbors"
     "test_tuplestoweights_sampler"
     "test_untrained_indexer"
+    "test_metric_loss_only"
+    "test_pca"
+    # flaky
+    "test_distributed_classifier_loss_and_miner"
   ];
 
   meta = {