There was an error while loading. Please reload this page.
1 parent 7922d9e commit ff85ab8Copy full SHA for ff85ab8
1 file changed
tests/pl/test_show.py
@@ -29,6 +29,10 @@ class TestShow(PlotTester, metaclass=PlotTesterMeta):
29
def test_plot_pad_extent_adds_padding(self, sdata_blobs: SpatialData):
30
sdata_blobs.pl.render_images(element="blobs_image").pl.show(pad_extent=100)
31
32
+ def test_plot_xlabel_ylabel(self, sdata_blobs: SpatialData):
33
+ """Visual test: xlabel/ylabel label the axes (feature for #763)."""
34
+ sdata_blobs.pl.render_images(element="blobs_image").pl.show(xlabel="x (µm)", ylabel="y (µm)")
35
+
36
def test_plot_frameon_false_single_panel(self, sdata_blobs: SpatialData):
37
"""Visual test: frameon=False hides axes decorations on a single panel (regression for #204)."""
38
sdata_blobs.pl.render_images(element="blobs_image").pl.show(frameon=False)
0 commit comments