Bug 1383896 - reduce noise in tests r=jmaher

MozReview-Commit-ID: Jwh9lwJ1TBc

--HG--
extra : rebase_source : 3e40366b1a19fb846b7a09986b17f0cbdf291889
This commit is contained in:
Ionut Goldan 2017-09-27 14:18:10 +03:00
Родитель 9f55478dda
Коммит 6924258e95
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -6,6 +6,7 @@ from __future__ import absolute_import, print_function
import copy
import os
import sys
import time
from mozlog.commandline import setup_logging
from talos import utils, test
@ -16,6 +17,8 @@ class ConfigurationError(Exception):
pass
FAR_IN_FUTURE = 7258114800
DEFAULTS = dict(
# args to pass to browser
extra_args='',
@ -92,6 +95,9 @@ DEFAULTS = dict(
'network.proxy.http': 'localhost',
'network.proxy.http_port': 80,
'network.proxy.type': 1,
# Bug 1383896 - reduces noise in tests
'idle.lastDailyNotification': int(time.time()),
'places.database.lastMaintenance': FAR_IN_FUTURE,
'security.enable_java': False,
'security.fileuri.strict_origin_policy': False,
'dom.send_after_paint_to_content': True,