gnu: python-pandas-2: Skip expensive tests.

* gnu/packages/python-science.scm (python-pandas-2)[arguments]: Set PANDAS_CI
variable.

Change-Id: I7c400ff260b3c833be1a55a30de021a81a5cbacb
This commit is contained in:
Ricardo Wurmus 2024-04-19 21:28:21 +02:00
parent ff2d0ecfca
commit 061c7bc1ca
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -770,7 +770,9 @@ (define-public python-pandas-2
(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"