Examples Should Be Tested on PySide2 5.14.2.2
This commit is contained in:
parent
9d1fbb6a3e
commit
ab96ca1d30
@ -150,7 +150,12 @@ conditionalExamples = {
|
||||
)
|
||||
}
|
||||
|
||||
@pytest.mark.skipif(Qt.QT_LIB == "PySide2" and "Qt.QtVersion.startswith('5.14')", reason="new PySide2 doesn't have loadUi functionality")
|
||||
@pytest.mark.skipif(
|
||||
Qt.QT_LIB == "PySide2"
|
||||
and tuple(map(int, Qt.PySide2.__version__.split("."))) >= (5, 14)
|
||||
and tuple(map(int, Qt.PySide2.__version__.split("."))) < (5, 14, 2, 2),
|
||||
reason="new PySide2 doesn't have loadUi functionality"
|
||||
)
|
||||
@pytest.mark.parametrize(
|
||||
"frontend, f",
|
||||
[
|
||||
|
Loading…
Reference in New Issue
Block a user