Skip to content

Commit 6b906c9

Browse files
committed
cancel unskipping eventloop test
1 parent 2c3a73d commit 6b906c9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

tests/test_eventloop.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,14 @@ def test_cocoa_loop(kernel):
100100

101101
@pytest.mark.parametrize("gui", qt_guis_avail)
102102
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")
103111
enable_gui(gui, kernel)
104112

105113
# We store the `QApplication` instance in the kernel.

0 commit comments

Comments
 (0)