diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-10 08:32:57 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-10 09:54:36 +0000 |
| commit | 8d78892b070fbf7ac9533ea6cee3c20cae0a5989 (patch) | |
| tree | 816927c59eaa27d6c58c7e5f160ee79fcf67a1e9 /gnu/packages/sphinx.scm | |
| parent | 90b1546bc2246eebee18d743bcb59e6700fcf8f9 (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
Diffstat (limited to 'gnu/packages/sphinx.scm')
| -rw-r--r-- | gnu/packages/sphinx.scm | 2 |
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 @@ (arguments (list #:test-flags - #~(list "--numprocesses" (number->string (parallel-job-count)) + #~(list "--numprocesses" (number->string (min 8 (parallel-job-count))) "-k" (string-join ;; XXX: Assertions fail in these tests, check why. (list "not test_additional_targets_should_be_translated" |
