From 63218bb594cf3b8180d8d12c4ad14c0d884d7aee Mon Sep 17 00:00:00 2001 From: Brandon Butler Date: Thu, 30 Nov 2023 17:43:39 -0500 Subject: [PATCH] fix: Ignore unrelated testing error to filterwarnings --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 081d66e3c..68d97a1ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -101,7 +101,10 @@ follow_imports = 'skip' [tool.pytest.ini_options] xfail_strict = true -filterwarnings = "error" +filterwarnings = [ + "error", + "ignore:datetime.datetime.utcfromtimestamp() is deprecated:DeprecationWarning" +] [tool.coverage.run] branch = true