From 1d13258c133637d4fd08adf7771f6eb7b6bb8b51 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 29 Nov 2023 13:38:02 -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 7410c26..4b4cc9e 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 = "."