diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 11:25:04 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 12:41:43 +0100 |
commit | 897d8a0d2019dc04a813c8adebcdb2668b961586 (patch) | |
tree | db90ef8391ae9cceef24d67bc81695376e99056c | |
parent | c06043f03297fb42ae45dca2010b06801625109d (diff) | |
download | guix-897d8a0d2019dc04a813c8adebcdb2668b961586.tar.gz guix-897d8a0d2019dc04a813c8adebcdb2668b961586.zip |
gnu: python-modin: Fix tests.
* gnu/packages/python-science.scm (python-modin) [arguments]
<test-flags>: Run test in up to 8 threads to improve performance,
supported upstream.
[native-inputs]: Remove python-coverage.
Change-Id: Id298ca7ae204f87fc7b421f6dc2f80959c4c4f85
-rw-r--r-- | gnu/packages/python-science.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 3cecd7fb94..e4d7806255 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -3396,8 +3396,9 @@ computing in Python. It extends both the @code{concurrent.futures} and (arguments (list #:test-flags - ;; These four tests fail because an expected error is not raised. - '(list "-k" "not test_binary_bad_broadcast") + #~(list "--numprocesses" (number->string (min 8 (parallel-job-count))) + ;; These four tests fail because an expected error is not raised. + "-k" "not test_binary_bad_broadcast") #:phases '(modify-phases %standard-phases (add-after 'unpack 'loosen-requirements @@ -3424,7 +3425,6 @@ computing in Python. It extends both the @code{concurrent.futures} and python-s3fs)) (native-inputs (list python-boto3 - python-coverage python-jinja2 python-lxml python-matplotlib |