()
| 17 | |
| 18 | |
| 19 | def test_plotting_plot_duckdb(): |
| 20 | duckdb = pytest.importorskip('duckdb') |
| 21 | connection = duckdb.connect(':memory:') |
| 22 | relation = duckdb.from_df(makeDataFrame(), connection=connection) |
| 23 | with pytest.warns(FutureWarning): |
| 24 | plot(relation, 'line') |
| 25 | |
| 26 | |
| 27 | def test_converter_argument_hover_formatters(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…