From 915327539a1f35acb60ca117c380800381d19f79 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 31 Jul 2019 13:32:58 +0300 Subject: [PATCH] pytest.ini: Ignore deprecation warnings These come from third-party libraries I have no control over. See: https://docs.pytest.org/en/latest/warnings.html#deprecationwarning-and-pendingdeprecationwarning --- pytest.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/pytest.ini b/pytest.ini index 2c57330..c6aa5df 100644 --- a/pytest.ini +++ b/pytest.ini @@ -2,3 +2,4 @@ addopts= -rsxX -s -v --strict --capture=sys filterwarnings = error::UserWarning + ignore:.*U.* is deprecated:DeprecationWarning