From 6261ea15ad937a98718907697b33f7c79d35fa1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Misty=20De=20M=C3=A9o?= Date: Mon, 18 Aug 2025 13:22:03 -0700 Subject: [PATCH] tests: add some silenced warnings These come from a dependency we can't affect right now. --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c0fc947..1a95ee1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -78,3 +78,11 @@ dev = [ "pytest>=8.3.5", "ruff>=0.9.9" ] + +[tool.pytest.ini_options] +filterwarnings = [ + # Comes from reppy, a third-party deps we don't control + "ignore: is an invalid escape sequence. Such sequences will not work in the future", + # Also comes from reppy + "ignore: The 'warn' method is deprecated, use 'warning' instead", +]