https://github.com/google/jax
Raw File
Tip revision: 4b8334ab0b8d9d3f1c676866d177f3e3e6b4c250 authored by jax authors on 20 October 2020, 02:13:29 UTC
Merge pull request #4647 from google:update-pypi
Tip revision: 4b8334a
pytest.ini
[pytest]
filterwarnings =
    error
    ignore:No GPU/TPU found, falling back to CPU.:UserWarning
    ignore:Explicitly requested dtype.*is not available.*:UserWarning
    ignore:jax.experimental.vectorize is deprecated.*:FutureWarning
    ignore:outfeed_receiver is unnecessary and deprecated:DeprecationWarning
    # The rest are for experimental/jax_to_tf
    ignore:the imp module is deprecated in favour of importlib.*:DeprecationWarning
    ignore:can't resolve package from __spec__ or __package__:ImportWarning
    ignore:Using or importing the ABCs.*:DeprecationWarning
doctest_optionflags = NUMBER NORMALIZE_WHITESPACE
addopts = --doctest-glob="*.rst"

back to top