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 = [
367
367
" tests.test_store.test_core" ,
368
368
" tests.test_store.test_logging" ,
369
369
" tests.test_store.test_object" ,
370
+ " tests.test_store.test_stateful" ,
370
371
]
371
372
strict = false
372
373
@@ -376,7 +377,6 @@ strict = false
376
377
module = [
377
378
" tests.test_codecs.test_codecs" ,
378
379
" tests.test_metadata.*" ,
379
- " tests.test_store.test_stateful" ,
380
380
" tests.test_store.test_wrapper" ,
381
381
" tests.test_group" ,
382
382
" tests.test_indexing" ,
Original file line number Diff line number Diff line change 15
15
]
16
16
17
17
18
- def test_zarr_hierarchy (sync_store : Store ):
18
+ def test_zarr_hierarchy (sync_store : Store ) -> None :
19
19
def mk_test_instance_sync () -> ZarrHierarchyStateMachine :
20
20
return ZarrHierarchyStateMachine (sync_store )
21
21
22
22
if isinstance (sync_store , ZipStore ):
23
23
pytest .skip (reason = "ZipStore does not support delete" )
24
24
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]
26
26
27
27
28
28
def test_zarr_store (sync_store : Store ) -> None :
29
- def mk_test_instance_sync () -> None :
29
+ def mk_test_instance_sync () -> ZarrStoreStateMachine :
30
30
return ZarrStoreStateMachine (sync_store )
31
31
32
32
if isinstance (sync_store , ZipStore ):
@@ -37,4 +37,4 @@ def mk_test_instance_sync() -> None:
37
37
# It assumes that `set` and `delete` are the only two operations that modify state.
38
38
# But LocalStore, directories can hang around even after a key is delete-d.
39
39
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