diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-01 17:26:36 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-01 17:26:36 +0100 |
commit | 151865ada4afb70b57e5f44248fce5bda9080af5 (patch) | |
tree | 773cc2891e8320b44ff4a85b3f96393f70afc37b | |
parent | 4592ba3d6a6477dce1ad3ea0957df602af51f648 (diff) |
gnu: python-zarr: Disable one test.
* gnu/packages/python-xyz.scm (python-zarr)[arguments]: Disable one more test.
Change-Id: I3733078b878fa60c4e382dfca39fcef64cefa1ae
-rw-r--r-- | gnu/packages/python-xyz.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3a47b5094c8..769ab8a337c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -29291,7 +29291,10 @@ codecs for use in data storage and communication applications.") ;; This tests are flaky. The pass several times on my laptop ;; but occasionally fail. They fail pretty reliably on the ;; build farm. - "-k not test_lazy_loader and not open_array") + "-k" (string-append "not test_lazy_loader and not open_array" + ;; TODO: remove this on python-team branch. + ;; This only fails on the master branch. + " and not test_encode_decode_array_dtype_shape_v3")) #:phases #~(modify-phases %standard-phases (add-before 'build 'set-version |