(kind, y)
| 64 | @frame_kinds |
| 65 | @y_combinations |
| 66 | def test_dataframe_dask(kind, y): |
| 67 | df = dd.from_pandas(makeDataFrame(), npartitions=2) |
| 68 | assert isinstance(df, dd.DataFrame) |
| 69 | df.hvplot(y=y, kind=kind) |
| 70 | |
| 71 | |
| 72 | @pytest.mark.skipif(dd is None, reason='dask not installed') |
nothing calls this directly
no test coverage detected
searching dependent graphs…