()
| 7030 | |
| 7031 | @image_comparison(['retain_tick_visibility.png'], style='mpl20') |
| 7032 | def test_retain_tick_visibility(): |
| 7033 | fig, ax = plt.subplots() |
| 7034 | plt.plot([0, 1, 2], [0, -1, 4]) |
| 7035 | plt.setp(ax.get_yticklabels(), visible=False) |
| 7036 | ax.tick_params(axis="y", which="both", length=0) |
| 7037 | |
| 7038 | |
| 7039 | def test_warn_too_few_labels(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…