This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 1a8b7257a6 gnu: python-mutagen: Remove test timeout.
1a8b7257a6 is described below

commit 1a8b7257a6d657f145520ed67e2faa6f6174a84b
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Feb 20 10:00:44 2022 +0200

    gnu: python-mutagen: Remove test timeout.
    
    * gnu/packages/music.scm (python-mutagen)[arguments]: Add phase to
    remove test timeouts imposed by python-hypothesis.
---
 gnu/packages/music.scm | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index a99167e9ef..090f8b938c 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -3,7 +3,7 @@
 ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus 
<[email protected]>
 ;;; Copyright © 2015 Paul van der Walt <[email protected]>
 ;;; Copyright © 2016 Al McElrath <[email protected]>
-;;; Copyright © 2016, 2017, 2019, 2021 Efraim Flashner <[email protected]>
+;;; Copyright © 2016, 2017, 2019, 2021, 2022 Efraim Flashner 
<[email protected]>
 ;;; Copyright © 2016, 2018, 2021 Leo Famulari <[email protected]>
 ;;; Copyright © 2016, 2017, 2019 Kei Kebreau <[email protected]>
 ;;; Copyright © 2016 John J. Foerch <[email protected]>
@@ -3608,6 +3608,17 @@ formats, looking up tracks through metadata and audio 
fingerprints.")
                (base32
                 "1qdk6i8gyhbi1c4j5jmbfpac3q8sff2ysri1pnp7nb9wzcp615v3"))))
     (build-system python-build-system)
+    (arguments
+     (list
+       #:phases
+       #~(modify-phases %standard-phases
+           (add-before 'check 'remove-hypothesis-deadlines
+             ;; These tests can timeout on slower architectures.
+             (lambda _
+               (substitute* "tests/test___init__.py"
+                 (("import given") "import given, settings")
+                 (("( +)@given" all spaces)
+                  (string-append spaces "@settings(deadline=None)\n" 
all))))))))
     (native-inputs
      (list python-pytest python-hypothesis python-flake8))
     (home-page "https://mutagen.readthedocs.io/";)

Reply via email to