From 27fa361c2f069f4c90da5b5aa79a021467497272 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sun, 19 Jan 2025 23:29:22 -0800 Subject: [PATCH] Silence deprecation warnings from botocore --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index fb1c7ead5806..7d10888363bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,10 @@ build-backend = "setuptools.build_meta" [tool.pytest.ini_options] addopts = "--color=yes" +filterwarnings = [ + # https://github.com/boto/boto3/issues/3889#issuecomment-2578155761 + "ignore:datetime.datetime.utcnow:DeprecationWarning:botocore" +] markers = [ "network: requires network connection", "requires_docker: requires running docker",