diff --git a/pytest.ini b/pytest.ini index 1539ba7ac..5401eaacc 100644 --- a/pytest.ini +++ b/pytest.ini @@ -52,7 +52,8 @@ qt_log_ignore = ^Error when parsing the netrc file ^Image of format '' blocked because it is not considered safe. If you are sure it is safe to do so, you can white-list the format by setting the environment variable QTWEBKIT_IMAGEFORMAT_WHITELIST= ^QPainter::end: Painter ended with \d+ saved states - ^QSslSocket: cannot resolve SSLv[23]_(client|server)_method + ^QSslSocket: cannot resolve * + ^Incompatible version of OpenSSL ^QQuickWidget::invalidateRenderControl could not make context current ^libpng warning: iCCP: known incorrect sRGB profile xfail_strict = true diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index 8682a0dfb..f5ad4682b 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -475,7 +475,9 @@ class QuteProc(testprocess.Process): value=msg.message) is_log_error = (msg.loglevel > logging.INFO and - not msg.message.startswith("Ignoring world ID")) + not msg.message.startswith("Ignoring world ID") and + not msg.message.startswith( + "Could not initialize QtNetwork SSL support.")) return is_log_error or is_js_error or is_ddg_load def _maybe_skip(self):