From fe81f153cff534fbce11ba7834b81bafa807e68d Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 28 Mar 2017 20:41:23 +0200 Subject: [PATCH] tests: Ignore "Unable to locate theme engine" messages --- tests/end2end/fixtures/quteprocess.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index f57c3c6d5..2cd2922e6 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -75,6 +75,8 @@ def is_ignored_lowlevel_message(message): "not supported by protocol" in message): # Makes tests fail on Quantumcross' machine return True + elif 'Unable to locate theme engine in module_path:' in message: + return True return False