()
| 112 | |
| 113 | @image_comparison(['quiver_with_key_test_image.png'], style='mpl20') |
| 114 | def test_quiver_with_key(): |
| 115 | fig, ax = plt.subplots() |
| 116 | ax.margins(0.1) |
| 117 | Q = draw_quiver(ax) |
| 118 | ax.quiverkey(Q, 0.5, 0.95, 2, |
| 119 | r'$2\, \mathrm{m}\, \mathrm{s}^{-1}$', |
| 120 | angle=-10, |
| 121 | coordinates='figure', |
| 122 | labelpos='W', |
| 123 | fontproperties={'weight': 'bold', 'size': 'large'}) |
| 124 | |
| 125 | |
| 126 | @image_comparison(['quiver_single_test_image.png'], remove_text=True, |
nothing calls this directly
no test coverage detected
searching dependent graphs…