Skip to content

Commit 52feb57

Browse files
committed
Filter warning in memorystore
1 parent 9ab9fee commit 52feb57

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_store/test_memory.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from __future__ import annotations
2+
import re
23

34
import pytest
45

@@ -8,6 +9,8 @@
89
from zarr.testing.utils import gpu_test
910

1011

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

0 commit comments

Comments
 (0)