From e78fbac2d3732c38fe3f4871ff3e6d02e84ce89a Mon Sep 17 00:00:00 2001 From: burgholzer Date: Tue, 9 Apr 2024 17:44:15 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20ignore=20uncritical=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: burgholzer --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dd5a4b723..b8860d4de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,7 +90,11 @@ addopts = ["-ra", "--strict-markers", "--strict-config", "--showlocals"] log_cli_level = "INFO" xfail_strict = true filterwarnings = [ - "error" + "error", + "ignore:.*pkg_resources.*:DeprecationWarning:", + "ignore:.*sre_.*:DeprecationWarning:", + "ignore:.*Rigetti.*:UserWarning:", + "ignore:.*Values in x.*:RuntimeWarning:", ] [tool.coverage]