summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-02-10 08:32:57 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-10 09:54:36 +0000
commit8d78892b070fbf7ac9533ea6cee3c20cae0a5989 (patch)
tree816927c59eaa27d6c58c7e5f160ee79fcf67a1e9
parent90b1546bc2246eebee18d743bcb59e6700fcf8f9 (diff)
gnu: python-sphinx: Pin to 8 thread during check phase.
* gnu/packages/sphinx.scm (python-sphinx):[arguments] <test-flags>: Limit the number of threads to maximum of 8 to amend failure in CI. Fixes: guix/guix#6284 Reported-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I77ce22e957d1ca213edb8e507a81bac3fd18dc8a
-rw-r--r--gnu/packages/sphinx.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index ee73371afee..b3dac795190 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -84,7 +84,7 @@
84 (arguments 84 (arguments
85 (list 85 (list
86 #:test-flags 86 #:test-flags
87 #~(list "--numprocesses" (number->string (parallel-job-count)) 87 #~(list "--numprocesses" (number->string (min 8 (parallel-job-count)))
88 "-k" (string-join 88 "-k" (string-join
89 ;; XXX: Assertions fail in these tests, check why. 89 ;; XXX: Assertions fail in these tests, check why.
90 (list "not test_additional_targets_should_be_translated" 90 (list "not test_additional_targets_should_be_translated"