From 9c0305174e7f3cd423bc899a2414d009b327faa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20H=C3=B8xbro=20Hansen?= Date: Thu, 29 Aug 2024 07:27:10 +0200 Subject: [PATCH] Remove polars.plot test --- hvplot/tests/testplotting.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/hvplot/tests/testplotting.py b/hvplot/tests/testplotting.py index 567257f41..e7c747e0b 100644 --- a/hvplot/tests/testplotting.py +++ b/hvplot/tests/testplotting.py @@ -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'] @@ -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