From 75bdd1f7971ae3eba724f0d9045d6a4871f3a944 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 10 Aug 2016 10:33:26 +0200 Subject: [PATCH] quteproc: pass through QT_QPA_PLATFORM_PLUGIN_PATH --- tests/end2end/fixtures/testprocess.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/end2end/fixtures/testprocess.py b/tests/end2end/fixtures/testprocess.py index ed9de0f85..e556934ea 100644 --- a/tests/end2end/fixtures/testprocess.py +++ b/tests/end2end/fixtures/testprocess.py @@ -258,7 +258,9 @@ class Process(QObject): for k, v in env.items(): procenv.insert(k, v) - passthrough_vars = ['DISPLAY', 'HOME'] # so --no-xvfb works + # so --no-xvfb and Qt on Windows works + passthrough_vars = ['DISPLAY', 'HOME', + 'QT_QPA_PLATFORM_PLUGIN_PATH'] for var in passthrough_vars: if var in os.environ: procenv.insert(var, os.environ[var])