From 9ad76d48a4a900981d7b2378bc14d28acf1474e2 Mon Sep 17 00:00:00 2001 From: maximlt Date: Tue, 21 Jan 2025 23:11:26 +0100 Subject: [PATCH] add reason --- hvplot/tests/testpatch.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hvplot/tests/testpatch.py b/hvplot/tests/testpatch.py index 1a74eb3fb..1b3c700e6 100644 --- a/hvplot/tests/testpatch.py +++ b/hvplot/tests/testpatch.py @@ -120,8 +120,10 @@ def test_polars_series_patched(self): pseries = pl.Series([0, 1, 2]) self.assertIsInstance(pseries.hvplot, hvPlotTabular) - # stack overflow error on the CI - @pytest.mark.skipif(sys.platform == 'win32' and sys.version[:2] == (3, 9)) + @pytest.mark.skipif( + sys.platform == 'win32' and sys.version[:2] == (3, 9), + reason='stack overflow error on the CI', + ) def test_polars_dataframe_patched(self): import polars as pl