Skip to content

Commit

Permalink
Fixed v3 skip
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Feb 28, 2025
1 parent 7b88b38 commit 5cbe53e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions python/kvikio/tests/test_zarr_v3.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,18 @@

import cupy as cp
import pytest
import zarr.core.buffer
import zarr.storage
from zarr.core.buffer.gpu import Buffer
from zarr.testing.store import StoreTests

import kvikio.zarr

pytest.importorskip("zarr", minversion="3.0.0")


import zarr.core.buffer # noqa: E402
import zarr.storage # noqa: E402
from zarr.core.buffer.gpu import Buffer # noqa: E402
from zarr.testing.store import StoreTests # noqa: E402


@pytest.mark.asyncio
async def test_basic(tmp_path: pathlib.Path) -> None:
src = zarr.storage.LocalStore(tmp_path)
Expand Down

0 comments on commit 5cbe53e

Please sign in to comment.