Skip to content

Commit 2b91d6e

Browse files
committed
Filter warning in memorystore
1 parent 70becb6 commit 2b91d6e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/test_store/test_memory.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
from __future__ import annotations
22

3+
import re
4+
35
import pytest
46

57
from zarr.core.buffer import Buffer, cpu, gpu
@@ -8,6 +10,10 @@
810
from zarr.testing.utils import gpu_test
911

1012

13+
# TODO: work out where this warning is coming from and fix it
14+
@pytest.mark.filterwarnings(
15+
re.escape("ignore:coroutine 'ClientCreatorContext.__aexit__' was never awaited")
16+
)
1117
class TestMemoryStore(StoreTests[MemoryStore, cpu.Buffer]):
1218
store_cls = MemoryStore
1319
buffer_cls = cpu.Buffer

0 commit comments

Comments
 (0)