From 1d3b78360cdeb93be33b1dc6c735994679252880 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Mon, 15 Dec 2025 09:29:57 +0100 Subject: [PATCH] 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 024ff32e76b911ee24026a3bd9f29572c842c4b0..54eeee1a7f654a824817c602d03e3ac044246c7d 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