https://github.com/google/jax
Raw File
Tip revision: c42fc286535a24ea854e0cd253ce355ff639ec7f authored by jax authors on 12 January 2021, 16:40:36 UTC
Merge pull request #5379 from hawkinsp:jaxrelease2
Tip revision: c42fc28
pytest.ini
[pytest]
filterwarnings =
    error
    ignore:No GPU/TPU found, falling back to CPU.:UserWarning
    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