From 9866545902221dfd99e25e6e0a7c8a9bcf7fe951 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Fri, 15 Sep 2023 13:34:44 +0200 Subject: [PATCH] test(python): Ignore matplotlib warning (#11129) --- py-polars/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/pyproject.toml b/py-polars/pyproject.toml index 3d58922b974a..7e3b14e81813 100644 --- a/py-polars/pyproject.toml +++ b/py-polars/pyproject.toml @@ -204,7 +204,7 @@ filterwarnings = [ # ...except where it prevents test debugging in an IPython console "ignore:.*unrecognized arguments.*PyDevIPCompleter:DeprecationWarning", "ignore:.*is_sparse is deprecated.*:FutureWarning", - "ignore:Matplotlib is currently using agg:UserWarning", + "ignore:FigureCanvasAgg is non-interactive:UserWarning", ] xfail_strict = true