We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3db1b22 commit 1f2d16aCopy full SHA for 1f2d16a
pyproject.toml
@@ -481,7 +481,9 @@ filterwarnings = [
481
"error::ResourceWarning",
482
"error::pytest.PytestUnraisableExceptionWarning",
483
# TODO(PY311-minimum): Specify EncodingWarning
484
- "ignore:'encoding' argument not specified.::numpy",
+ # Ignore 3rd party EncodingWarning but raise on pandas'
485
+ "ignore:.*encoding.* argument not specified",
486
+ "error:.*encoding.* argument not specified::pandas",
487
"ignore:.*ssl.SSLSocket:pytest.PytestUnraisableExceptionWarning",
488
"ignore:.*ssl.SSLSocket:ResourceWarning",
489
# GH 44844: Can remove once minimum matplotlib version >= 3.7
0 commit comments