From 4b9bbaa04d528085aad43e3347a8d2405cdd1295 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 28 Sep 2017 17:30:53 +0200 Subject: [PATCH] Skip test_force_software_rendering with QtWebKit --- tests/end2end/test_invocations.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/end2end/test_invocations.py b/tests/end2end/test_invocations.py index 5ebd5568f..ecb824f95 100644 --- a/tests/end2end/test_invocations.py +++ b/tests/end2end/test_invocations.py @@ -325,6 +325,9 @@ def test_qute_settings_persistence(short_tmpdir, request, quteproc_new): @pytest.mark.no_ci def test_force_software_rendering(request, quteproc_new): """Make sure we can force software rendering with -s.""" + if not request.config.webengine: + pytest.skip("Only runs with QtWebEngine") + args = (_base_args(request.config) + ['--temp-basedir', '-s', 'force_software_rendering', 'true']) quteproc_new.start(args)