diff options
author | Tanguy Le Carrour <[email protected]> | 2020-10-08 12:37:04 +0200 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2020-10-10 22:39:11 +0200 |
commit | 1f1996e6a5cc5203e0534dc26fe51b87832082aa (patch) | |
tree | b7a5f37524408c71362652e47427a39d7e3a6621 | |
parent | 02036cdda4d2600166322a12d3eb0ab2a5b18f4e (diff) |
gnu: beets: Skip failing tests.
* gnu/packages/music.scm (beets)[phases]{disable-failing-tests}: New phase.
Signed-off-by: Ludovic Courtès <[email protected]>
-rw-r--r-- | gnu/packages/music.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 1434af9788..6693f34037 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -29,6 +29,7 @@ ;;; Copyright © 2020 Lars-Dominik Braun <[email protected]> ;;; Copyright © 2020 Giacomo Leidi <[email protected]> ;;; Copyright © 2020 Michael Rohleder <[email protected]> +;;; Copyright © 2020 Tanguy Le Carrour <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3159,6 +3160,13 @@ websites such as Libre.fm.") (arguments `(#:phases (modify-phases %standard-phases + ;; Reported upstream: <https://github.com/beetbox/beets/issues/3771>. + ;; Disable the faulty test as the fix is unclear. + (add-after 'unpack 'disable-failing-tests + (lambda _ + (substitute* "test/test_mediafile.py" + (("def test_read_audio_properties") "def _test_read_audio_properties")) + #t)) (add-after 'unpack 'set-HOME (lambda _ (setenv "HOME" (string-append (getcwd) "/tmp")) |