From c6b56a28510498eea1b5f40ae27cdf62a2633bec Mon Sep 17 00:00:00 2001 From: Casper Guo Date: Thu, 19 Oct 2023 11:27:59 -0400 Subject: [PATCH] Ignore external warnings --- pytest.ini | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pytest.ini b/pytest.ini index d9f6b8845..522595d20 100644 --- a/pytest.ini +++ b/pytest.ini @@ -23,3 +23,9 @@ filterwarnings = # external, verified as not relevant # (10/2022) ignore:.*df.iloc.*will attempt to set the values inplace.*:FutureWarning + # external, datetime module deprecation + # (11/2023) + ignore:.*datetime.datetime.utcnow() is deprecated.*:DeprecationWarning + # external, attribute removal planned for Python 3.14 + # (11/2023) + ignore:.*Attribute s is deprecated and will be removed in Python 3.14.*:DeprecationWarning