mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
0a7a2b24d3
commit
aa0d8b7e6c
1 changed files with 3 additions and 1 deletions
|
@ -1234,7 +1234,9 @@ doing practical, real world data analysis in Python.")
|
||||||
#:test-flags
|
#:test-flags
|
||||||
#~(list "--pyargs" "pandas"
|
#~(list "--pyargs" "pandas"
|
||||||
;; "--exitfirst"
|
;; "--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"
|
"-m" "not slow and not network and not db"
|
||||||
;; All tests errored.
|
;; All tests errored.
|
||||||
"--ignore=pandas/tests/io/test_clipboard.py"
|
"--ignore=pandas/tests/io/test_clipboard.py"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue