Skip to content

Commit e7386e3

Browse files
committed
TST/MNT: in pyside6 designer is named 'pyside6-designer', also disable designer plugin test on pyside6
disable the test for now (until custom pydm-widgets work in pyside6-designer), so in the meantime we can enable all other tests to run on pyside6 in automation.
1 parent d9240ce commit e7386e3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pydm/tests/test_plugins_import.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
from ..widgets.qtplugin_base import qtplugin_factory
1+
import pytest
2+
from ..utilities import ACTIVE_QT_WRAPPER, QtWrapperTypes
3+
if ACTIVE_QT_WRAPPER == QtWrapperTypes.PYSIDE6:
4+
pytest.skip("pydm with pyside6 does not support custom pydm-widgets yet in pyside6-designer!", allow_module_level=True)
25

6+
from ..widgets.qtplugin_base import qtplugin_factory
37

48
def test_import_byte_plugin():
59
# Byte plugin

0 commit comments

Comments
 (0)