Skip to content

Commit d5d0d4d

Browse files
authored
Merge pull request #1 from maxrjones/object-store-tests
Run Store tests on ObjectStore
2 parents 5486e69 + 56b7a0b commit d5d0d4d

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ test = [
7070
"mypy",
7171
"hypothesis",
7272
"universal-pathlib",
73+
"obstore==0.3.0b5",
7374
]
7475

7576
jupyter = [

tests/test_store/test_object.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from zarr.core.buffer import cpu
2+
from zarr.storage.object_store import ObjectStore
3+
from zarr.testing.store import StoreTests
4+
5+
6+
class TestObjectStore(StoreTests[ObjectStore, cpu.Buffer]):
7+
store_cls = ObjectStore

0 commit comments

Comments
 (0)