Disable WebGL for tests

See #2250
This commit is contained in:
Florian Bruhin 2017-01-25 08:04:58 +01:00
parent 2a773a2c55
commit 2934ffd4d9

View File

@ -381,7 +381,9 @@ class QuteProc(testprocess.Process):
settings = [
('ui', 'message-timeout', '0'),
('general', 'auto-save-interval', '0'),
('general', 'new-instance-open-target.window', 'last-opened')
('general', 'new-instance-open-target.window', 'last-opened'),
# https://github.com/The-Compiler/qutebrowser/issues/2250
('content', 'webgl', 'false'),
]
if not self.request.config.webengine:
settings.append(('network', 'ssl-strict', 'false'))