diff options
author | Ross Barnowski <rossbar@berkeley.edu> | 2021-12-16 17:31:38 -0800 |
---|---|---|
committer | Ross Barnowski <rossbar@berkeley.edu> | 2021-12-16 17:31:38 -0800 |
commit | 6b47e92cbf74a23e21afaceb7885157f66e602e8 (patch) | |
tree | 37f43df8f3e2a567e33d360f666b45442245de0a | |
parent | 38ccc3eafba58f1ae5cac1762805c31f3154322d (diff) | |
download | numpy-6b47e92cbf74a23e21afaceb7885157f66e602e8.tar.gz |
DEV: add a warningfilter to fix pytest workflow.
-rw-r--r-- | pytest.ini | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pytest.ini b/pytest.ini index 92ce6d6e2..1d84f4c48 100644 --- a/pytest.ini +++ b/pytest.ini @@ -18,3 +18,5 @@ filterwarnings = ignore:assertions not in test modules or plugins:pytest.PytestConfigWarning # TODO: remove below when array_api user warning is removed ignore:The numpy.array_api submodule is still experimental. See NEP 47. +# Ignore DeprecationWarnings from distutils + ignore::DeprecationWarning:.*distutils |