From b632e15fe6c642682883f19f2c150c71b8279286 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 2 Jan 2025 18:25:26 +0100 Subject: [PATCH] gnu: python-botocore: Limit number of parallel test workers. With 16 test workers the workers sometimes crash. * gnu/packages/python-xyz.scm (python-botocore)[arguments]: Use at most eight test workers. Change-Id: I8f752e7df576a47b8459c63d99d420d72861695d --- 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 767919692329d7de7b437e89b586b3e858d5470f..12b0cf3164823f886f7661ae661fcc89c368679e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -20272,7 +20272,7 @@ browser from Python.") (arguments (list #:test-flags - #~(list "--numprocesses" (number->string (parallel-job-count)) + #~(list "--numprocesses" (number->string (min (parallel-job-count) 8)) ;; It strugles to find 'botocore'. "--ignore" "tests/functional/leak/test_resource_leaks.py" ;; Tests require networking.