From 9721881261629c45fcb9c08b4e00566d52c496ae Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 2 Mar 2018 06:37:01 +0100 Subject: [PATCH] Adjust @issue3572 check for Qt 5.10.1 --- tests/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 465dacd10..5eec6ce0b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -65,7 +65,8 @@ def _apply_platform_markers(config, item): ('issue2478', utils.is_windows and config.webengine, "Broken with QtWebEngine on Windows"), ('issue3572', - qtutils.version_check('5.10', compiled=False, exact=True) and + (qtutils.version_check('5.10', compiled=False, exact=True) or + qtutils.version_check('5.10.1', compiled=False, exact=True) and config.webengine and 'TRAVIS' in os.environ, "Broken with QtWebEngine with Qt 5.10 on Travis"), ('qtbug60673',