Skip to content

Commit

Permalink
Remove polars.plot test
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Aug 29, 2024
1 parent 8c9c60c commit 9c03051
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions hvplot/tests/testplotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,11 @@

from unittest import TestCase

import holoviews as hv
import pandas as pd
import pytest

from parameterized import parameterized

from hvplot.converter import HoloViewsConverter
from hvplot.plotting import plot
from hvplot.tests.util import makeDataFrame

no_args = ['line', 'area', 'hist', 'box', 'kde', 'density', 'bar', 'barh']
x_y = ['scatter', 'hexbin']
Expand Down Expand Up @@ -54,11 +50,3 @@ def test_pandas_dataframe_plot_does_not_implement_pie(self):
class TestPandasHvplotPlotting(TestPandasHoloviewsPlotting):
def setUp(self):
pd.options.plotting.backend = 'hvplot'


def test_plot_supports_polars():
pl = pytest.importorskip('polars')
dfp = pl.DataFrame(makeDataFrame())
out = plot(dfp, 'line')
assert isinstance(out, hv.NdOverlay)
assert out.keys() == dfp.columns

0 comments on commit 9c03051

Please sign in to comment.