From 6ab1c250474cfa9b8b5a71c253bb3ae0cf3eba39 Mon Sep 17 00:00:00 2001 From: burgholzer Date: Mon, 6 Nov 2023 18:23:14 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20ignore=20Qiskit-internal=20pendi?= =?UTF-8?q?ng=20deprecation=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: burgholzer --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 22b69963d..9579b3bcc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -132,7 +132,8 @@ xfail_strict = true filterwarnings = [ "error", 'ignore:.*qiskit.__qiskit_version__.*:DeprecationWarning:qiskit:', - 'ignore:.*qiskit.utils.algorithm_globals.QiskitAlgorithmGlobals*:DeprecationWarning:qiskit' + 'ignore:.*qiskit.utils.algorithm_globals.QiskitAlgorithmGlobals*:DeprecationWarning:qiskit', + 'ignore:.*Building a flow controller with keyword arguments is going to be deprecated*:PendingDeprecationWarning:qiskit', ] log_cli_level = "info" testpaths = ["test/python"]