guix-commits
[Top][All Lists]
Advanced

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

119/213: gnu: python-botocore: Limit number of parallel test workers.


From: guix-commits
Subject: 119/213: gnu: python-botocore: Limit number of parallel test workers.
Date: Fri, 10 Jan 2025 10:43:04 -0500 (EST)

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

commit 23d3c9f96439747d1698a66a792d50a3b0e41319
Author: Ricardo Wurmus <rekado@elephly.net>
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 65f5b53cbc..ae5454d712 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

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