File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,8 @@ async def test_deterministic_size(
78
78
np .testing .assert_array_equal (a [3 :], 0 )
79
79
80
80
81
+ # TODO: fix this warning
82
+ @pytest .mark .filterwarnings ("ignore:Unclosed client session:ResourceWarning" )
81
83
@gpu_test
82
84
class TestGpuMemoryStore (StoreTests [GpuMemoryStore , gpu .Buffer ]):
83
85
store_cls = GpuMemoryStore
Original file line number Diff line number Diff line change 15
15
from zarr .core .buffer .core import BufferPrototype
16
16
17
17
18
+ # TODO: fix this warning
19
+ @pytest .mark .filterwarnings (
20
+ "ignore:coroutine 'ClientCreatorContext.__aexit__' was never awaited:RuntimeWarning"
21
+ )
18
22
class TestWrapperStore (StoreTests [WrapperStore , Buffer ]):
19
23
store_cls = WrapperStore
20
24
buffer_cls = Buffer
You can’t perform that action at this time.
0 commit comments