(**kw)
| 30 | def test_font_styles(): |
| 31 | |
| 32 | def find_matplotlib_font(**kw): |
| 33 | prop = FontProperties(**kw) |
| 34 | path = findfont(prop, directory=mpl.get_data_path()) |
| 35 | return FontProperties(fname=path) |
| 36 | |
| 37 | from matplotlib.font_manager import FontProperties, findfont |
| 38 | warnings.filterwarnings( |
no test coverage detected
searching dependent graphs…