diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 00:12:50 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:37:03 +0100 |
| commit | 60e0723b09de35ae9413e7651b24e8c793ce26c8 (patch) | |
| tree | f7be7368af49e221ba2dfade541c3e85cca17b9a | |
| parent | fe84590b091cc844a50fa837149469215dd055ed (diff) | |
gnu: python-textdistance: Limit concurrent tests.
* gnu/packages/python-xyz.scm (python-textdistance)[arguments]
<test-flags>: Limit parallel tests up to 4 threads.
Change-Id: Id70320f528a0618e3058ccabaec5675180b06b74
| -rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a972ab6131..432142c97a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15450,7 +15450,7 @@ supports @code{readline} shortcuts.") (arguments (list #:test-flags - #~(list "--numprocesses" (number->string (parallel-job-count))))) + #~(list "--numprocesses" (number->string (min 4 (parallel-job-count)))))) (native-inputs (list python-numpy python-pytest |
