Add SDA deprecation warning to pytest.ini

PiperOrigin-RevId: 519281775
This commit is contained in:
Yash Katariya 2023-03-24 18:03:29 -07:00 committed by jax authors
parent c572155cc1
commit 5da4a5ae76

View File

@ -27,5 +27,7 @@ filterwarnings =
ignore:backend and device argument on jit is deprecated.*:DeprecationWarning
ignore:GlobalDeviceArray has been deprecated.*:DeprecationWarning
ignore:jax.interpreters.pxla.make_sharded_device_array is deprecated.*:DeprecationWarning
# TODO(skyewm, yashkatariya): Remove after jaxlib 0.4.7 is released.
ignore:jax.interpreters.pxla.ShardedDeviceArray is deprecated.*:DeprecationWarning
doctest_optionflags = NUMBER NORMALIZE_WHITESPACE
addopts = --doctest-glob="*.rst"