(df)
| 1289 | |
| 1290 | |
| 1291 | def test_interactive_pandas_eval_hvplot(df): |
| 1292 | dfi = Interactive(df) |
| 1293 | dfi = dfi.head(2).hvplot(y='A') |
| 1294 | |
| 1295 | evaled = dfi.eval() |
| 1296 | |
| 1297 | assert isinstance(evaled, hv.Curve) |
| 1298 | |
| 1299 | |
| 1300 | def test_interactive_pandas_series_widget_value(series): |
nothing calls this directly
no test coverage detected
searching dependent graphs…