[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
158/232: gnu: python-pandas: Build and run tests in parallel.
From: |
guix-commits |
Subject: |
158/232: gnu: python-pandas: Build and run tests in parallel. |
Date: |
Sun, 24 Apr 2022 23:59:05 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit d77f02f324144b3c1af74ec5f200d71354eb0d40
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Apr 18 15:27:38 2022 -0400
gnu: python-pandas: Build and run tests in parallel.
* gnu/packages/python-science.scm (python-pandas)
[phases]{enable-parallel-build}: New phase.
{check}: Add xdist -n option. Skip test_memory_usage test.
[native-inputs]: Add python-pytest-xdist.
---
gnu/packages/python-science.scm | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 1852a16047..7721b04c31 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -412,6 +412,12 @@ library.")
(srfi srfi-26))
#:phases
(modify-phases %standard-phases
+ (add-after 'unpack 'enable-parallel-build
+ (lambda _
+ (substitute* "setup.py"
+ (("\"-j\", type=int, default=1")
+ (format #f "\"-j\", type=int, default=~a"
+ (parallel-job-count))))))
(add-after 'unpack 'patch-which
(lambda* (#:key inputs #:allow-other-keys)
(let ((which (assoc-ref inputs "which")))
@@ -438,6 +444,7 @@ library.")
(when tests?
(invoke "pytest" "-vv" "pandas" "--skip-slow"
"--skip-network"
+ "-n" (number->string (parallel-job-count))
"-k"
(string-append
;; These test access the internet (see:
@@ -447,7 +454,11 @@ library.")
"not test_wrong_url"
;; TODO: Missing input
" and not TestS3"
- " and not s3"))))))))))
+ " and not s3"
+ ;; This test fails when run with pytest-xdist
+ ;; (see:
+ ;;
https://github.com/pandas-dev/pandas/issues/39096).
+ " and not test_memory_usage"))))))))))
(propagated-inputs
(list python-jinja2
python-numpy
@@ -465,6 +476,7 @@ library.")
python-html5lib
python-pytest
python-pytest-mock
+ python-pytest-xdist
;; Needed to test clipboard support.
xorg-server-for-tests))
(home-page "https://pandas.pydata.org")
- 132/232: gnu: python-ipython-documentation: Also build info and pdf targets., (continued)
- 132/232: gnu: python-ipython-documentation: Also build info and pdf targets., guix-commits, 2022/04/24
- 135/232: gnu: Add python-rfc3339-validator., guix-commits, 2022/04/24
- 137/232: gnu: Add python-openapi-spec-validator., guix-commits, 2022/04/24
- 147/232: gnu: Add python-pecan., guix-commits, 2022/04/24
- 142/232: gnu: python-httpx: Update to 0.22.0., guix-commits, 2022/04/24
- 143/232: gnu: python-uvicorn: Update to 0.17.6., guix-commits, 2022/04/24
- 149/232: gnu: python-fakeredis: Update to 1.7.1., guix-commits, 2022/04/24
- 152/232: gnu: Add python-openapi-core., guix-commits, 2022/04/24
- 153/232: gnu: Add python-jupyterlab-server., guix-commits, 2022/04/24
- 156/232: gnu: python-llvmlite: Update to 0.38.0., guix-commits, 2022/04/24
- 158/232: gnu: python-pandas: Build and run tests in parallel.,
guix-commits <=
- 159/232: gnu: python-pandas: Update to 1.4.2., guix-commits, 2022/04/24
- 160/232: gnu: python-scikit-learn: Parallelize build and test suite., guix-commits, 2022/04/24
- 164/232: gnu: python-voila: Update to 0.3.5., guix-commits, 2022/04/24
- 162/232: gnu: python-umap-learn: Update to 0.5.3., guix-commits, 2022/04/24
- 170/232: gnu: python-types-dataclasses: Fix typo., guix-commits, 2022/04/24
- 172/232: gnu: python-readme-renderer: Update to 34.0., guix-commits, 2022/04/24
- 173/232: gnu: mbed-tools: Update to 7.53.0 and relax click version requirement., guix-commits, 2022/04/24
- 167/232: gnu: python-jupyter-protocol: Update to 0.2.0., guix-commits, 2022/04/24
- 177/232: gnu: python-can: Update to 4.0.0., guix-commits, 2022/04/24
- 191/232: gnu: Add python-crccheck., guix-commits, 2022/04/24