From f75f17b61920a2d7280d09760c6ec776ccf1b118 Mon Sep 17 00:00:00 2001 From: Nico Alt <nicoalt@posteo.org> Date: Fri, 14 Jun 2019 20:08:53 +0200 Subject: [PATCH] Ignore deprecation warning in requests with pylint --- pytest.ini | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..ee1ffab --- /dev/null +++ b/pytest.ini @@ -0,0 +1,7 @@ +# Copyright (c) 2019 Nico Alt +# SPDX-License-Identifier: AGPL-3.0-only +# License-Filename: LICENSE.md + +[pytest] +filterwarnings = + ignore:Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working:DeprecationWarning -- GitLab