(xscale, yscale)
| 8173 | @pytest.mark.parametrize('xscale', ['symlog', 'log']) |
| 8174 | @pytest.mark.parametrize('yscale', ['symlog', 'log']) |
| 8175 | def test_minorticks_on(xscale, yscale): |
| 8176 | ax = plt.subplot() |
| 8177 | ax.plot([1, 2, 3, 4]) |
| 8178 | ax.set_xscale(xscale) |
| 8179 | ax.set_yscale(yscale) |
| 8180 | ax.minorticks_on() |
| 8181 | |
| 8182 | |
| 8183 | def test_twinx_knows_limits(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…