(mpl_cleanup)
| 155 | |
| 156 | |
| 157 | def test_seaborn(mpl_cleanup): |
| 158 | seaborn = pytest.importorskip("seaborn") |
| 159 | tips = DataFrame( |
| 160 | {"day": pd.date_range("2023", freq="D", periods=5), "total_bill": range(5)} |
| 161 | ) |
| 162 | seaborn.stripplot(x="day", y="total_bill", data=tips) |
| 163 | |
| 164 | |
| 165 | def test_pandas_datareader(): |