Skip to content

Commit 65e92a4

Browse files
committed
Clean up warning filters in tests
1 parent 45146ca commit 65e92a4

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

pyproject.toml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ test = [
7373
"coverage",
7474
"pytest",
7575
"pytest-cov",
76-
"s3fs",
76+
"s3fs>==2023.1.0",
7777
"pytest-asyncio",
7878
"pytest-accept",
7979
"moto[s3,server]",
@@ -96,7 +96,7 @@ docs = [
9696
'numpydoc',
9797
'numcodecs[msgpack]',
9898
'rich',
99-
's3fs',
99+
's3fs>==2023.1.0',
100100
]
101101

102102

@@ -232,7 +232,7 @@ dependencies = [
232232
'numpy==1.25.*',
233233
'numcodecs==0.14.*', # 0.14 needed for zarr3 codecs
234234
'fsspec==2022.10.0',
235-
's3fs==2022.10.0',
235+
's3fs==2023.1.0',
236236
'universal_pathlib==0.0.22',
237237
'typing_extensions==4.9.*',
238238
'donfig==0.8.*',
@@ -382,12 +382,7 @@ addopts = [
382382
"--durations=10", "-ra", "--strict-config", "--strict-markers",
383383
]
384384
filterwarnings = [
385-
"error:::zarr.*",
386-
"ignore:PY_SSIZE_T_CLEAN will be required.*:DeprecationWarning",
387-
"ignore:The loop argument is deprecated since Python 3.8.*:DeprecationWarning",
388-
"ignore:Creating a zarr.buffer.gpu.*:UserWarning",
389-
"ignore:Duplicate name:UserWarning", # from ZipFile
390-
"ignore:.*is currently not part in the Zarr format 3 specification.*:UserWarning",
385+
"error"
391386
]
392387
markers = [
393388
"gpu: mark a test as requiring CuPy and GPU"

0 commit comments

Comments
 (0)