Skip to content

Commit 42ed8b3

Browse files
committed
Skip test on Jupyter+PyGFX
1 parent 8dc0578 commit 42ed8b3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_controller.py

+4
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,10 @@ def test_roi_controller() -> None:
304304
@no_type_check
305305
@pytest.mark.usefixtures("any_app")
306306
def test_roi_interaction() -> None:
307+
if _app.gui_frontend() == _app.GuiFrontend.JUPYTER and IS_PYGFX:
308+
pytest.skip("Invalid canvas size on CI")
309+
return
310+
307311
ctrl = ArrayViewer()
308312

309313
canvas_roi_start = (0, 0)

0 commit comments

Comments
 (0)