rekado pushed a commit to branch master
in repository guix.

commit b632e15fe6c642682883f19f2c150c71b8279286
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Jan 2 18:25:26 2025 +0100

    gnu: python-botocore: Limit number of parallel test workers.
    
    With 16 test workers the workers sometimes crash.
    
    * gnu/packages/python-xyz.scm (python-botocore)[arguments]: Use at most 
eight
    test workers.
    
    Change-Id: I8f752e7df576a47b8459c63d99d420d72861695d
---
 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 7679196923..12b0cf3164 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20272,7 +20272,7 @@ browser from Python.")
     (arguments
      (list
       #:test-flags
-      #~(list "--numprocesses" (number->string (parallel-job-count))
+      #~(list "--numprocesses" (number->string (min (parallel-job-count) 8))
               ;; It strugles to find 'botocore'.
               "--ignore" "tests/functional/leak/test_resource_leaks.py"
               ;; Tests require networking.

Reply via email to