diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-30 11:46:46 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-05-05 22:38:15 +0200 |
commit | 297e88edff2b532a0ebf6bab846677c08e4e19b4 (patch) | |
tree | 0494e13cf4019b4768f5aa1c5f955866c9f9bedb | |
parent | 74dd2def7fa34d40245ed3de351a1cf945224e3c (diff) | |
download | guix-297e88edff2b532a0ebf6bab846677c08e4e19b4.tar.gz guix-297e88edff2b532a0ebf6bab846677c08e4e19b4.zip |
gnu: python-xarray: Disable tests that are known to fail.
* gnu/packages/python-science.scm (python-xarray)[arguments]: Disable two
tests.
Change-Id: I70954173e0aca5a377cf19476e9390a97febadc7
-rw-r--r-- | gnu/packages/python-science.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index bbf80907e0..47d706904f 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -1467,8 +1467,14 @@ multiple deep learning frameworks.") "0cyldwchcrmbm1y7l1ry70kk8zdh7frxci3c6iwf4iyyj34dnra5")))) (build-system pyproject-build-system) (arguments - ;; This needs a more recent version of python-hypothesis - (list #:test-flags '(list "--ignore=xarray/tests/test_strategies.py"))) + (list + #:test-flags + ;; This needs a more recent version of python-hypothesis + '(list "--ignore=xarray/tests/test_strategies.py" + ;; These are known to fail with Pandas 2 + "-k" + (string-append "not test_datetime_conversion_warning" + " and not test_timedelta_conversion_warning")))) (native-inputs (list python-setuptools-scm python-pytest)) (propagated-inputs |