guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 1d3b78360cdeb93be33b1dc6c735994679252880
Author: Andreas Enge <[email protected]>
AuthorDate: Mon Dec 15 09:29:57 2025 +0100
gnu: python-joblib: Limit parallelism of tests.
* gnu/packages/python-xyz.scm (python-joblib)[arguments]<#:test-flags>:
Use at most 8 cores.
Change-Id: I0086ecbe653801052dff08a7d675d304791dba84
---
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 024ff32e76..54eeee1a7f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8698,7 +8698,7 @@ bookmarks using a declarative input in the form of a
markdown file.")
(arguments
(list
#:test-flags
- #~(list "--numprocesses" (number->string (parallel-job-count))
+ #~(list "--numprocesses" (number->string (min 8 (parallel-job-count)))
;; Disabled to avoid having to depend on ipython/jupyter.
"-k" "not
test_parallel_call_cached_function_defined_in_jupyter")))
(native-inputs