We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd0322e commit f806ba1Copy full SHA for f806ba1
cubed/tests/test_store.py
@@ -5,13 +5,14 @@
5
6
import cubed
7
import cubed.array_api as xp
8
+from cubed.storage.backend import backend_storage_name
9
10
ZARR_PYTHON_V2 = zarr.__version__[0] == "2"
11
12
13
@pytest.mark.skipif(
- ZARR_PYTHON_V2,
14
- reason="setting an arbitrary Zarr store is not supported for Zarr Python v2",
+ ZARR_PYTHON_V2 or backend_storage_name() == "tensorstore",
15
+ reason="setting an arbitrary Zarr store is not supported for Zarr Python v2, or tensorstore",
16
)
17
def test_arbitrary_zarr_store():
18
store = zarr.storage.MemoryStore()
0 commit comments