From d25f319f595f49debdc02f21564b2c1fa47266de Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 29 Nov 2023 13:34:45 -0800 Subject: [PATCH] Ignore deprecation warnings during tests --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9c90c4b..116791d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,5 +13,7 @@ sections="FUTURE,STDLIB,THIRDPARTY,OCTODNS,FIRSTPARTY,LOCALFOLDER" [tool.pytest.ini_options] filterwarnings = [ 'error', + # TODO: remove once octodns 2.0 has been released + 'ignore:.*DEPRECATED.*2.0', ] pythonpath = "."