(fig_test, fig_ref)
| 214 | |
| 215 | @check_figures_equal() |
| 216 | def test_step_markers(fig_test, fig_ref): |
| 217 | fig_test.subplots().step([0, 1], "-o") |
| 218 | fig_ref.subplots().plot([0, 0, 1], [0, 1, 1], "-o", markevery=[0, 2]) |
| 219 | |
| 220 | |
| 221 | @pytest.mark.parametrize("parent", ["figure", "axes"]) |