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