We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab9fee commit 52feb57Copy full SHA for 52feb57
tests/test_store/test_memory.py
@@ -1,4 +1,5 @@
1
from __future__ import annotations
2
+import re
3
4
import pytest
5
@@ -8,6 +9,8 @@
8
9
from zarr.testing.utils import gpu_test
10
11
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"))
14
class TestMemoryStore(StoreTests[MemoryStore, cpu.Buffer]):
15
store_cls = MemoryStore
16
buffer_cls = cpu.Buffer
0 commit comments