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 ee7a50a commit f706098Copy full SHA for f706098
tests/test_eventloop.py
@@ -102,6 +102,10 @@ def test_cocoa_loop(kernel):
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 sys.platform == "win32" and gui == "qt6" and sys.version_info < (3, 10):
106
+ pytest.skip(
107
+ "win+qt6 fails on 3.9 with AttributeError: module 'PySide6.QtPrintSupport' has no attribute 'QApplication'"
108
+ )
109
enable_gui(gui, kernel)
110
111
# We store the `QApplication` instance in the kernel.
0 commit comments