File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -102,16 +102,11 @@ def test_cocoa_loop(kernel):
102102def test_qt_enable_gui (gui , kernel , capsys ):
103103 if os .getenv ("GITHUB_ACTIONS" , None ) == "true" and gui == "qt5" :
104104 pytest .skip ("Qt5 and GitHub action crash CPython" )
105- if sys . platform == "win32" and gui == "qt6" and sys .version_info < (3 , 10 ):
105+ if gui == "qt6" and sys .version_info < (3 , 10 ):
106106 pytest .skip (
107- "win+ qt6 fails on 3.9 with AttributeError: module 'PySide6.QtPrintSupport' has no attribute 'QApplication'"
107+ "qt6 fails on 3.9 with AttributeError: module 'PySide6.QtPrintSupport' has no attribute 'QApplication'"
108108 )
109- if (
110- sys .platform == "posix"
111- and gui == "qt6"
112- and sys .version_info [2 ] in [(3 , 11 ), (3 , 12 )]
113- and os .getenv ("GITHUB_ACTIONS" , None ) == "true"
114- ):
109+ if sys .platform == "posix" and gui == "qt6" and os .getenv ("GITHUB_ACTIONS" , None ) == "true" :
115110 pytest .skip ("qt6 fails on github CI with missing libEGL.so.1" )
116111 enable_gui (gui , kernel )
117112
You can’t perform that action at this time.
0 commit comments