We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a276fd8 commit cb9628bCopy full SHA for cb9628b
1 file changed
tools/run_examples.py
@@ -78,7 +78,10 @@ def main():
78
passed.append("gtk3.py")
79
80
# pyqt4
81
- if packages["PyQt4"]:
+ if LINUX:
82
+ print("[run_examples.py] PASS: qt.py pyqt4 (Issue #452)")
83
+ passed.append("qt.py pyqt4 (Issue #452)")
84
+ elif packages["PyQt4"]:
85
examples.append("qt.py pyqt4")
86
else:
87
print("[run_examples.py] PASS: qt.py pyqt4 (PyQt4 not installed)")
@@ -92,7 +95,10 @@ def main():
92
95
passed.append("qt.py pyqt5")
93
96
94
97
# pyside
- if packages["PySide"]:
98
99
+ print("[run_examples.py] PASS: qt.py pyside (Issue #452)")
100
+ passed.append("qt.py pyside (Issue #452)")
101
+ elif packages["PySide"]:
102
examples.append("qt.py pyside")
103
104
print("[run_examples.py] PASS: qt.py pyside (PySide not installed)")
0 commit comments