From 9bd46297f1dc111029e4c9547fe7bfa8bd6ec02d Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 20 Mar 2024 15:14:00 -0700 Subject: [PATCH] ignore deprecated msgs during tests --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 0837667..6b7546c 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 = "."