We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dc0578 commit e3236b7Copy full SHA for e3236b7
tests/test_controller.py
@@ -28,6 +28,7 @@
28
29
IS_WIN = os.name == "nt"
30
IS_PYSIDE6 = API_NAME == "PySide6"
31
+IS_JUPYTER = _app.gui_frontend() == "jupyter"
32
IS_PYGFX = _app.canvas_backend(None) == "pygfx"
33
34
@@ -304,6 +305,10 @@ def test_roi_controller() -> None:
304
305
@no_type_check
306
@pytest.mark.usefixtures("any_app")
307
def test_roi_interaction() -> None:
308
+ if _app.gui_frontend() == _app.GuiFrontend.JUPYTER and IS_PYGFX:
309
+ pytest.skip("Invalid canvas size on CI")
310
+ return
311
+
312
ctrl = ArrayViewer()
313
314
canvas_roi_start = (0, 0)
0 commit comments