about summary refs log tree commit diff
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2023-10-27 00:02:58 +0300
committerDoron Behar <doron.behar@gmail.com>2023-10-27 00:31:14 +0300
commit20753def4b2099eaa1ef554b38a1d25ef89d5c7a (patch)
tree3edb72f1a568fb12d298e91b56a620b6002a5279 /pkgs/tools/audio
parent425de6e3fe01c5f22517edcf064262e1c7bc8db1 (diff)
downloadnixlib-20753def4b2099eaa1ef554b38a1d25ef89d5c7a.tar
nixlib-20753def4b2099eaa1ef554b38a1d25ef89d5c7a.tar.gz
nixlib-20753def4b2099eaa1ef554b38a1d25ef89d5c7a.tar.bz2
nixlib-20753def4b2099eaa1ef554b38a1d25ef89d5c7a.tar.lz
nixlib-20753def4b2099eaa1ef554b38a1d25ef89d5c7a.tar.xz
nixlib-20753def4b2099eaa1ef554b38a1d25ef89d5c7a.tar.zst
nixlib-20753def4b2099eaa1ef554b38a1d25ef89d5c7a.zip
beets: disable a failing test.
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/beets/common.nix2
-rw-r--r--pkgs/tools/audio/beets/default.nix9
2 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/tools/audio/beets/common.nix b/pkgs/tools/audio/beets/common.nix
index 3678fd81fa89..b47138d2415f 100644
--- a/pkgs/tools/audio/beets/common.nix
+++ b/pkgs/tools/audio/beets/common.nix
@@ -26,6 +26,7 @@
 , extraPatches ? [ ]
 , pluginOverrides ? { }
 , disableAllPlugins ? false
+, disabledTests ? []
 
   # tests
 , runCommand
@@ -101,6 +102,7 @@ python3Packages.buildPythonApplication {
   ] ++ pluginWrapperBins;
 
   disabledTestPaths = lib.flatten (attrValues (lib.mapAttrs (n: v: v.testPaths ++ [ "test/test_${n}.py" ]) disabledPlugins));
+  inherit disabledTests;
 
   # Perform extra "sanity checks", before running pytest tests.
   preCheck = ''
diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix
index 1168afbe747f..0723a2764e8d 100644
--- a/pkgs/tools/audio/beets/default.nix
+++ b/pkgs/tools/audio/beets/default.nix
@@ -45,6 +45,15 @@ lib.makeExtensible (self: {
       # https://github.com/beetbox/beets/pull/4868, which doesn't apply now
       ./patches/fix-pillow10-compat.patch
     ];
+    disabledTests = [
+      # This issue is present on this version alone, and can be removed on the
+      # next stable version version bump. Since this is fixed in branch master,
+      # we don't have a bug ticket open for this. As of writing, it also seems
+      # hard to find a patch that can be backported to v1.6.0 that would fix
+      # the failure, as the master branch has gone through too many changes
+      # now.
+      "test_get_single_item_by_path"
+    ];
   };
 
   beets-minimal = self.beets.override { disableAllPlugins = true; };