File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -367,6 +367,7 @@ module = [
367367 " tests.test_store.test_core" ,
368368 " tests.test_store.test_logging" ,
369369 " tests.test_store.test_object" ,
370+ " tests.test_store.test_stateful" ,
370371]
371372strict = false
372373
@@ -376,7 +377,6 @@ strict = false
376377module = [
377378 " tests.test_codecs.test_codecs" ,
378379 " tests.test_metadata.*" ,
379- " tests.test_store.test_stateful" ,
380380 " tests.test_store.test_wrapper" ,
381381 " tests.test_group" ,
382382 " tests.test_indexing" ,
Original file line number Diff line number Diff line change 1515]
1616
1717
18- def test_zarr_hierarchy (sync_store : Store ):
18+ def test_zarr_hierarchy (sync_store : Store ) -> None :
1919 def mk_test_instance_sync () -> ZarrHierarchyStateMachine :
2020 return ZarrHierarchyStateMachine (sync_store )
2121
2222 if isinstance (sync_store , ZipStore ):
2323 pytest .skip (reason = "ZipStore does not support delete" )
2424
25- run_state_machine_as_test (mk_test_instance_sync )
25+ run_state_machine_as_test (mk_test_instance_sync ) # type ignore[no-untyped-call]
2626
2727
2828def test_zarr_store (sync_store : Store ) -> None :
29- def mk_test_instance_sync () -> None :
29+ def mk_test_instance_sync () -> ZarrStoreStateMachine :
3030 return ZarrStoreStateMachine (sync_store )
3131
3232 if isinstance (sync_store , ZipStore ):
@@ -37,4 +37,4 @@ def mk_test_instance_sync() -> None:
3737 # It assumes that `set` and `delete` are the only two operations that modify state.
3838 # But LocalStore, directories can hang around even after a key is delete-d.
3939 pytest .skip (reason = "Test isn't suitable for LocalStore." )
40- run_state_machine_as_test (mk_test_instance_sync )
40+ run_state_machine_as_test (mk_test_instance_sync ) # type ignore[no-untyped-call]
You can’t perform that action at this time.
0 commit comments