Skip to content

Commit

Permalink
attempt to skip some faulty test
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt committed Jan 21, 2025
1 parent ab22ad0 commit c2a94aa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hvplot/tests/testpatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
Tests patching of supported libraries
"""

import sys

from unittest import TestCase, SkipTest

import numpy as np
import pandas as pd
import pytest

from hvplot.plotting import hvPlotTabular, hvPlot

Expand Down Expand Up @@ -117,6 +120,8 @@ 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))
def test_polars_dataframe_patched(self):
import polars as pl

Expand Down

0 comments on commit c2a94aa

Please sign in to comment.