guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/14: gnu: python-natsort: Fix the test suite on slower machines.


From: guix-commits
Subject: 05/14: gnu: python-natsort: Fix the test suite on slower machines.
Date: Thu, 25 Aug 2022 06:07:43 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 04f813ec63de85e72becce40b625d6ebd0cd4484
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Aug 24 22:58:47 2022 +0300

    gnu: python-natsort: Fix the test suite on slower machines.
    
    * gnu/packages/python-xyz.scm (python-natsort)[arguments]: Add custom
    phase to remove the time limit for some of the tests.
---
 gnu/packages/python-xyz.scm | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e8763342f6..f7971b75fa 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18194,6 +18194,13 @@ JSON) codec.")
     (arguments
      `(#:phases
        (modify-phases %standard-phases
+         (add-after 'unpack 'remove-test-hypothesis-deadlines
+           (lambda _
+             (substitute* "tests/test_utils.py"
+               (("from hypothesis import given")
+                "from hypothesis import given, settings")
+               (("( +)@given" all spaces)
+                (string-append spaces "@settings(deadline=None)\n" all)))))
          (replace 'check
            (lambda* (#:key tests? #:allow-other-keys)
              (when tests?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]