From 9c0d81e786978c5cc4cbfc50045d271e5b3ae0b9 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Fri, 7 Jan 2022 08:22:43 +0100 Subject: [PATCH] Suppress distutils deprecation warning --- pytest.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pytest.ini b/pytest.ini index 5c0ad039a4..2ffa4473f0 100644 --- a/pytest.ini +++ b/pytest.ini @@ -39,6 +39,8 @@ filterwarnings= # https://github.com/pytest-dev/pytest/discussions/9296 ignore:The distutils.sysconfig module is deprecated, use sysconfig instead + ignore:The distutils package is deprecated.* + # Workaround for pypa/setuptools#2868 # ideally would apply to PyPy only but for # https://github.com/pytest-dev/pytest/discussions/9296