diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-19 21:28:21 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-04-22 11:29:30 +0200 |
commit | 061c7bc1cac93841b616bf07be56fe91abe579be (patch) | |
tree | 9fc55fb6a2c3bb3b0b2023f2cfcbbbb369ce86a4 | |
parent | ff2d0ecfca87450c82df8d74666261b1c19cbe66 (diff) | |
download | guix-061c7bc1cac93841b616bf07be56fe91abe579be.tar.gz guix-061c7bc1cac93841b616bf07be56fe91abe579be.zip |
gnu: python-pandas-2: Skip expensive tests.
* gnu/packages/python-science.scm (python-pandas-2)[arguments]: Set PANDAS_CI
variable.
Change-Id: I7c400ff260b3c833be1a55a30de021a81a5cbacb
-rw-r--r-- | gnu/packages/python-science.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index ba3a8dbb4c..f862facfe3 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -770,7 +770,9 @@ doing practical, real world data analysis in Python.") (lambda _ (system "Xvfb &") (setenv "DISPLAY" ":0") - (setenv "HOME" "."))) + (setenv "HOME" ".") + ;; Skip tests that require lots of resources. + (setenv "PANDAS_CI" "1"))) (add-after 'unpack 'patch-which (lambda _ (substitute* "pandas/io/clipboard/__init__.py" |