[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: python-joblib: Run test suite sequentially.
From: |
guix-commits |
Subject: |
02/02: gnu: python-joblib: Run test suite sequentially. |
Date: |
Tue, 26 Oct 2021 02:03:42 -0400 (EDT) |
efraim pushed a commit to branch core-updates-frozen
in repository guix.
commit a41f93c39d03143ce9007ad278a04fa30498bc0b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Oct 26 09:01:27 2021 +0300
gnu: python-joblib: Run test suite sequentially.
* gnu/packages/python-xyz.scm (python-joblib)[arguments]: Adjust custom
'check phase to run the test suite sequentially.
---
gnu/packages/python-xyz.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cc724ed..da34024 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4010,6 +4010,7 @@ logic-free templating system Mustache.")
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
+ (setenv "JOBLIB_MULTIPROCESSING" "0")
(invoke "pytest" "-v" "joblib")))))))
(native-inputs
`(("python-pytest" ,python-pytest)))