Skip to content

Commit

Permalink
add reason
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt committed Jan 21, 2025
1 parent c2a94aa commit 9ad76d4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions hvplot/tests/testpatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 9ad76d4

Please sign in to comment.