(fmt)
| 981 | |
| 982 | @pytest.mark.parametrize('fmt', ['pdf', 'png', 'ps', 'raw', 'svg']) |
| 983 | def test_fallback_smoke(fmt): |
| 984 | fonts, test_str = _gen_multi_font_text() |
| 985 | plt.rcParams['font.size'] = 16 |
| 986 | fig = plt.figure(figsize=(4.75, 1.85)) |
| 987 | fig.text(0.5, 0.5, test_str, |
| 988 | horizontalalignment='center', verticalalignment='center') |
| 989 | |
| 990 | fig.savefig(io.BytesIO(), format=fmt) |
| 991 | |
| 992 | |
| 993 | @pytest.mark.parametrize("font_list", |
nothing calls this directly
no test coverage detected
searching dependent graphs…