guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

57/72: gnu: python-pandas-2: Restrict number of test processes.


From: guix-commits
Subject: 57/72: gnu: python-pandas-2: Restrict number of test processes.
Date: Thu, 26 Dec 2024 09:33:07 -0500 (EST)

rekado pushed a commit to branch python-team
in repository guix.

commit 1bd16b04bde5ba21baf8fc57ab07d5166033b9df
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Dec 18 09:34:16 2024 +0100

    gnu: python-pandas-2: Restrict number of test processes.
    
    * gnu/packages/python-science.scm (python-pandas-2)[arguments]: Restrict to 
at
    most four processes.
    
    Change-Id: I8ee4cb29ad922e9b853515b5f0e8f8aabca52c92
---
 gnu/packages/python-science.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index b6869819a5..ece6bbb573 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -1234,7 +1234,9 @@ doing practical, real world data analysis in Python.")
       #:test-flags
       #~(list "--pyargs" "pandas"
               ;; "--exitfirst"
-              "--numprocesses" (number->string (parallel-job-count))
+              ;; XXX The tests won't even start on my 16 core laptop, but they
+              ;; start with 4 processes.
+              "--numprocesses" (number->string (min 4 (parallel-job-count)))
               "-m" "not slow and not network and not db"
               ;; All tests errored.
               "--ignore=pandas/tests/io/test_clipboard.py"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]