File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ def mk_test_instance_sync() -> ZarrHierarchyStateMachine:
18
18
pytest .skip (reason = "ZipStore does not support delete" )
19
19
if isinstance (sync_store , MemoryStore ):
20
20
run_state_machine_as_test (
21
- mk_test_instance_sync , settings = Settings (report_multiple_bugs = False )
21
+ mk_test_instance_sync , settings = Settings (report_multiple_bugs = False , max_examples = 50 )
22
22
)
23
23
24
24
@@ -28,6 +28,11 @@ def mk_test_instance_sync() -> None:
28
28
29
29
if isinstance (sync_store , ZipStore ):
30
30
pytest .skip (reason = "ZipStore does not support delete" )
31
- if isinstance (sync_store , LocalStore ):
31
+ elif isinstance (sync_store , LocalStore ):
32
32
pytest .skip (reason = "This test has errors" )
33
- run_state_machine_as_test (mk_test_instance_sync , settings = Settings (report_multiple_bugs = True ))
33
+ elif isinstance (sync_store , MemoryStore ):
34
+ run_state_machine_as_test (mk_test_instance_sync , settings = Settings (max_examples = 50 ))
35
+ else :
36
+ run_state_machine_as_test (
37
+ mk_test_instance_sync , settings = Settings (report_multiple_bugs = True )
38
+ )
You can’t perform that action at this time.
0 commit comments