diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-09-28 12:03:53 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-28 12:03:53 -0600 |
commit | 5bcd1ccc4a96e8e984a01f83920690c1e0061493 (patch) | |
tree | b76547be450a0a7307edef6630fea826864802cb | |
parent | 7d2904b45abb0a56e70b1710b140ba7cc50cd766 (diff) | |
parent | 5ead935255ec640a1b7a4e9be6b8590ea2bb00b9 (diff) | |
download | numpy-5bcd1ccc4a96e8e984a01f83920690c1e0061493.tar.gz |
Merge pull request #19984 from rossbar/fix-pytest-collection
MAINT: Configure pytest to ignore array_api warnings.
-rw-r--r-- | pytest.ini | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pytest.ini b/pytest.ini index dfad538c2..92ce6d6e2 100644 --- a/pytest.ini +++ b/pytest.ini @@ -16,3 +16,5 @@ filterwarnings = ignore:Importing from numpy.matlib is # pytest warning when using PYTHONOPTIMIZE 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. |