From 1976c41374ad47505542cbfa4c151ad5e349b3c9 Mon Sep 17 00:00:00 2001 From: Philipp Albrecht Date: Fri, 3 Dec 2021 14:40:11 +0100 Subject: [PATCH] Ignore DeprecationWarning caused by astroid https://github.com/PyCQA/astroid/issues/1282 --- pytest.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pytest.ini b/pytest.ini index 72ad2400246..c39197da4ea 100644 --- a/pytest.ini +++ b/pytest.ini @@ -86,4 +86,6 @@ filterwarnings = ignore:_SixMetaPathImporter\.find_spec\(\) not found; falling back to find_module\(\):ImportWarning # https://github.com/ionelmc/python-hunter/issues/97 ignore:The distutils\.sysconfig module is deprecated, use sysconfig instead:DeprecationWarning + # https://github.com/PyCQA/astroid/issues/1282 + ignore:The distutils package is deprecated and slated for removal in Python 3\.12\. Use setuptools or check PEP 632 for potential alternatives:DeprecationWarning faulthandler_timeout = 90