diff --git a/pytest.ini b/pytest.ini index e3b8e4376..3537bc0da 100644 --- a/pytest.ini +++ b/pytest.ini @@ -91,6 +91,9 @@ qt_log_ignore = ^Unable to detect GPU vendor\.$ # Qt 5 on CI with WebKit ^qglx_findConfig: Failed to finding matching FBConfig for QSurfaceFormat\(version 2\.0, options QFlags\(\), depthBufferSize -1, redBufferSize 1, greenBufferSize 1, blueBufferSize 1, alphaBufferSize -1, stencilBufferSize -1, samples -1, swapBehavior QSurfaceFormat::SingleBuffer, swapInterval 1, colorSpace QSurfaceFormat::DefaultColorSpace, profile QSurfaceFormat::NoProfile\)$ + # Qt 6.8+ debug build + # https://github.com/qutebrowser/qutebrowser/issues/8069#issuecomment-2017644465 + ^QObject::connect: Connecting from COMPAT signal \(QWebEnginePage::featurePermissionRequest(ed|Canceled)\(QUrl,QWebEnginePage::Feature\)\) xfail_strict = true filterwarnings = error diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index fb9cd203c..b1829c152 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -253,6 +253,10 @@ def is_ignored_chromium_message(line): # Qt 6.9 on GitHub Actions with Windows Server 2025 # [4348:7828:0605/123815.402:ERROR:shared_image_manager.cc(356)] "SharedImageManager::ProduceMemory: Trying to Produce a Memory representation from a non-existent mailbox.", + + # Qt 6.10 debug build + # "[453900:453973:0909/000324.265214:WARNING:viz_main_impl.cc(85)]" + "VizNullHypothesis is disabled (not a warning)", ] return any(testutils.pattern_match(pattern=pattern, value=message) for pattern in ignored_messages)