We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f746b4d commit 2392e81Copy full SHA for 2392e81
plotpy/tests/gui/test_qtdesigner.py
@@ -15,11 +15,20 @@
15
16
import os
17
18
+import pytest
19
from guidata.qthelpers import qt_app_context
20
21
from plotpy.builder import make
22
from plotpy.tests import data as ptd
-from plotpy.widgets.qtdesigner import loadui
23
+
24
+try:
25
+ from plotpy.widgets.qtdesigner import loadui
26
+except ImportError:
27
+ # PySide6 known to fail
28
+ pytest.skip(
29
+ "PySide6 does not support QPyDesignerCustomWidgetPlugin",
30
+ allow_module_level=True,
31
+ )
32
33
FormClass = loadui(os.path.splitext(__file__)[0] + ".ui")
34
0 commit comments