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 4e23817 commit 8bc206dCopy full SHA for 8bc206d
1 file changed
pyproject.toml
@@ -408,6 +408,10 @@ filterwarnings = [
408
"error",
409
"ignore:Unclosed client session <aiohttp.client.ClientSession.*:ResourceWarning",
410
"ignore:Numcodecs codecs are not in the Zarr version 3 specification.*:UserWarning",
411
+ # s3fs finalizers can fail during session cleanup when aiobotocore sessions are garbage
412
+ # collected without being entered. This is a known issue in s3fs/aiobotocore, and pytest
413
+ # per-test filterwarnings markers can't catch it (https://github.com/pytest-dev/pytest/issues/14096).
414
+ "ignore:Exception ignored in[\\s\\S]*Session was never entered:pytest.PytestUnraisableExceptionWarning",
415
]
416
markers = [
417
"asyncio: mark test as asyncio test",
0 commit comments