From e97db301f01b6090b377cf50272dad64a79c122e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20H=C3=B8xbro=20Hansen?= Date: Tue, 23 Jan 2024 11:30:07 +0100 Subject: [PATCH] Ignore warning from test_operation --- geoviews/tests/test_operation.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/geoviews/tests/test_operation.py b/geoviews/tests/test_operation.py index c6b20380..9558c1df 100644 --- a/geoviews/tests/test_operation.py +++ b/geoviews/tests/test_operation.py @@ -1,7 +1,13 @@ -import geoviews as gv +import pytest import xarray as xr from holoviews.operation import contours +import geoviews as gv + + +@pytest.mark.filterwarnings( + "ignore:numpy.ndarray size changed, may indicate binary incompatibility" # https://github.com/pydata/xarray/issues/7259 +) def test_quadmesh_contoures_filled(): # Regression test for: https://github.com/holoviz/holoviews/pull/5925 ds = xr.tutorial.open_dataset("air_temperature").isel(time=0)