From 91c893fd9ab6ce537baebf5a71f0db5a6916d9fd Mon Sep 17 00:00:00 2001 From: Ashley Smith Date: Mon, 22 Jan 2024 17:27:48 +0000 Subject: [PATCH] Pytest: Ignore DeprecationWarning from pandas --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c18af36..3d4edae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,7 +69,10 @@ viresclient = "viresclient.commands.viresclient:start" minversion = "6.0" addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"] xfail_strict = true -filterwarnings = ["error"] +filterwarnings = [ + "error", + "ignore:(\nPyarrow will become a required dependency of pandas):DeprecationWarning", +] testpaths = [ "tests", ]