pytest: remove obsolete warning filters

This commit is contained in:
Jake VanderPlas 2022-07-25 10:46:35 -07:00
parent 45498ba4a1
commit a40fb76a51

View File

@ -16,11 +16,6 @@ filterwarnings =
ignore:jax.experimental.* is deprecated, import jax.example_libraries.* instead:FutureWarning
# numpy uses distutils which is deprecated
ignore:The distutils.* is deprecated.*:DeprecationWarning
# numpy deprecation warnings that can be triggered by an old SciPy version on NumPy 1.21.
# TODO(phawkins): Remove these when the minimum scipy version no longer triggers these
# (seen on scipy 1.2.3).
ignore:`np.*` is a deprecated alias for.*:DeprecationWarning
ignore:The module numpy.dual is deprecated.*:DeprecationWarning
ignore:`sharded_jit` is deprecated. Please use `pjit` instead.*:DeprecationWarning
doctest_optionflags = NUMBER NORMALIZE_WHITESPACE
addopts = --doctest-glob="*.rst"