()
| 154 | @needs_usetex |
| 155 | @image_comparison(["empty.eps"], style='_classic_test') |
| 156 | def test_transparency_tex(): |
| 157 | mpl.rcParams['text.usetex'] = True |
| 158 | fig, ax = plt.subplots() |
| 159 | ax.set_axis_off() |
| 160 | ax.plot([0, 1], color="r", alpha=0) |
| 161 | ax.text(.5, .5, "foo", color="r", alpha=0) |
| 162 | |
| 163 | |
| 164 | def test_bbox(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…