Skip to content

Commit 4bb6318

Browse files
committed
Filter warning in memorystore
1 parent b999ec1 commit 4bb6318

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/test_store/test_memory.py

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

3+
import re
34
from typing import TYPE_CHECKING
45

56
import numpy as np
@@ -15,6 +16,10 @@
1516
from zarr.core.common import ZarrFormat
1617

1718

19+
# TODO: work out where this warning is coming from and fix it
20+
@pytest.mark.filterwarnings(
21+
re.escape("ignore:coroutine 'ClientCreatorContext.__aexit__' was never awaited")
22+
)
1823
class TestMemoryStore(StoreTests[MemoryStore, cpu.Buffer]):
1924
store_cls = MemoryStore
2025
buffer_cls = cpu.Buffer

0 commit comments

Comments
 (0)