We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c3a73d commit 6b906c9Copy full SHA for 6b906c9
1 file changed
tests/test_eventloop.py
@@ -100,6 +100,14 @@ def test_cocoa_loop(kernel):
100
101
@pytest.mark.parametrize("gui", qt_guis_avail)
102
def test_qt_enable_gui(gui, kernel, capsys):
103
+ if os.getenv("GITHUB_ACTIONS", None) == "true" and gui == "qt5":
104
+ pytest.skip("Qt5 and GitHub action crash CPython")
105
+ if gui == "qt6" and sys.version_info < (3, 10):
106
+ pytest.skip(
107
+ "qt6 fails on 3.9 with AttributeError: module 'PySide6.QtPrintSupport' has no attribute 'QApplication'"
108
+ )
109
+ if sys.platform == "linux" and gui == "qt6" and os.getenv("GITHUB_ACTIONS", None) == "true":
110
+ pytest.skip("qt6 fails on github CI with missing libEGL.so.1")
111
enable_gui(gui, kernel)
112
113
# We store the `QApplication` instance in the kernel.
0 commit comments