Skip to content

Commit a3a9989

Browse files
committed
more skip
1 parent b5de665 commit a3a9989

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

tests/test_eventloop.py

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,16 +102,11 @@ def test_cocoa_loop(kernel):
102102
def 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

0 commit comments

Comments
 (0)