Skip to content

Commit 51584c9

Browse files
committed
sim missins libEGL
1 parent 861ffdd commit 51584c9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_eventloop.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,13 @@ def test_qt_enable_gui(gui, kernel, capsys):
106106
pytest.skip(
107107
"win+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+
):
115+
pytest.skip("qt6 fails on github CI with missing libEGL.so.1")
109116
enable_gui(gui, kernel)
110117

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

0 commit comments

Comments
 (0)