From b00a958302517faa5856e3159cb58783c7367a7d Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 29 Nov 2023 13:35:28 -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 0d25b0c..6343164 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 = "."