guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 59115e2eeedaf282f3aa3f8f4c3e5d2b62da66bd
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Sep 25 00:12:50 2025 +0100

    gnu: python-textdistance: Limit concurrent tests.
    
    * gnu/packages/python-xyz.scm (python-textdistance)[arguments]
    <test-flags>: Limit parallel tests up to 4 threads.
    
    Change-Id: Id70320f528a0618e3058ccabaec5675180b06b74
---
 gnu/packages/python-xyz.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index bd6efb547f..e5a1fa7f47 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15474,7 +15474,7 @@ supports @code{readline} shortcuts.")
     (arguments
      (list
       #:test-flags
-      #~(list "--numprocesses" (number->string (parallel-job-count)))))
+      #~(list "--numprocesses" (number->string (min 4 (parallel-job-count))))))
     (native-inputs
      (list python-numpy
            python-pytest

Reply via email to