()
| 190 | @pytest.mark.backend('pgf') |
| 191 | @image_comparison(['pgf_mixedmode.pdf'], style='default') |
| 192 | def test_mixedmode(): |
| 193 | mpl.rcParams.update({'font.family': 'serif', 'pgf.rcfonts': False}) |
| 194 | Y, X = np.ogrid[-1:1:40j, -1:1:40j] |
| 195 | plt.pcolor(X**2 + Y**2).set_rasterized(True) |
| 196 | |
| 197 | |
| 198 | # test bbox_inches clipping |
nothing calls this directly
no test coverage detected
searching dependent graphs…