summaryrefslogtreecommitdiff
path: root/pytest.ini
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-07-04 18:34:48 -0400
committerJason R. Coombs <jaraco@jaraco.com>2021-07-04 19:01:22 -0400
commitde3b5b824ef2a681ca90ec0413ea991253228d47 (patch)
treebe098b00f5ae16605d0da2a8b4c3270517a01254 /pytest.ini
parente345d8e3e193c22d156cf5e1eaab2783b8f020b9 (diff)
downloadpython-setuptools-git-de3b5b824ef2a681ca90ec0413ea991253228d47.tar.gz
Add another deprecation warning bypass for flake8 on PyPy because the call depth is missed.
Diffstat (limited to 'pytest.ini')
-rw-r--r--pytest.ini6
1 files changed, 6 insertions, 0 deletions
diff --git a/pytest.ini b/pytest.ini
index 307c5533..deb68741 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -18,6 +18,12 @@ filterwarnings=
ignore:The distutils package is deprecated::packaging.tags
## end upstream
+ # Suppress deprecation warning in flake8 (for PyPy)
+ # PyPy alters the call depth, so the deprecation warning
+ # is associated with the wrong module.
+ # https://foss.heptapod.net/pypy/pypy/-/issues/3503
+ ignore:SelectableGroups dict interface is deprecated::importlib_metadata
+
# https://github.com/pypa/setuptools/issues/1823
ignore:bdist_wininst command is deprecated
# Suppress this error; unimportant for CI tests