diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-07-04 18:34:48 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-07-04 19:01:22 -0400 |
| commit | de3b5b824ef2a681ca90ec0413ea991253228d47 (patch) | |
| tree | be098b00f5ae16605d0da2a8b4c3270517a01254 /pytest.ini | |
| parent | e345d8e3e193c22d156cf5e1eaab2783b8f020b9 (diff) | |
| download | python-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.ini | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |
