From 881e2a3ce479ff004d1309b2f936f9b954bbffb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20H=C3=B8xbro=20Hansen?= Date: Sat, 28 Sep 2024 08:32:07 +0200 Subject: [PATCH] TEST: Mark test_explorer_geo_revise_kind with geo marker --- hvplot/tests/testui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hvplot/tests/testui.py b/hvplot/tests/testui.py index 70574fd2d..ccbbb3cca 100644 --- a/hvplot/tests/testui.py +++ b/hvplot/tests/testui.py @@ -391,6 +391,7 @@ def test_explorer_xarray_multi_var_extra_dims_no_coord(): @pytest.mark.parametrize('kind_tuple', [('scatter', 'points'), ('line', 'paths')]) +@pytest.mark.geo def test_explorer_geo_revise_kind(kind_tuple): da = ds_air_temperature['air'].isel(time=0) explorer = hvplot.explorer(da, x='lon', y='lat', kind=kind_tuple[0], geo=True)