diff --git a/tests/test_store/test_stateful.py b/tests/test_store/test_stateful.py index a17d7a55be..3fd1af6205 100644 --- a/tests/test_store/test_stateful.py +++ b/tests/test_store/test_stateful.py @@ -5,7 +5,7 @@ ) from zarr.abc.store import Store -from zarr.storage import LocalStore, ZipStore +from zarr.storage import LocalStore from zarr.testing.stateful import ZarrHierarchyStateMachine, ZarrStoreStateMachine pytestmark = [ @@ -19,9 +19,6 @@ def test_zarr_hierarchy(sync_store: Store): def mk_test_instance_sync() -> ZarrHierarchyStateMachine: return ZarrHierarchyStateMachine(sync_store) - if isinstance(sync_store, ZipStore): - pytest.skip(reason="ZipStore does not support delete") - run_state_machine_as_test(mk_test_instance_sync) @@ -29,9 +26,6 @@ def test_zarr_store(sync_store: Store) -> None: def mk_test_instance_sync() -> None: return ZarrStoreStateMachine(sync_store) - if isinstance(sync_store, ZipStore): - pytest.skip(reason="ZipStore does not support delete") - if isinstance(sync_store, LocalStore): # This test uses arbitrary keys, which are passed to `set` and `delete`. # It assumes that `set` and `delete` are the only two operations that modify state.