mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1172918 - Clean up talos options that are not used (removing from mozharness). r=jmaher
This commit is contained in:
parent
0b64f61000
commit
7aeab39746
@ -17,8 +17,6 @@ config = {
|
||||
"install_app_path": "/builds/sut_tools/installApp.py",
|
||||
"talos_from_code_url": "https://hg.mozilla.org/%s/raw-file/%s/testing/talos/talos_from_code.py",
|
||||
"talos_json_url": "https://hg.mozilla.org/%s/raw-file/%s/testing/talos/talos.json",
|
||||
"datazilla_urls": ["https://datazilla.mozilla.org/talos"],
|
||||
"datazilla_authfile": os.path.join(os.getcwd(), "oauth.txt"),
|
||||
#remotePerfConfigurator.py options
|
||||
"preflight_talos_options": [
|
||||
"-v", "-e", "%(app_name)s",
|
||||
|
@ -20,8 +20,6 @@ config = {
|
||||
},
|
||||
"title": os.uname()[1].lower().split('.')[0],
|
||||
"results_url": "http://graphs.mozilla.org/server/collect.cgi",
|
||||
"datazilla_urls": ["https://datazilla.mozilla.org/talos"],
|
||||
"datazilla_authfile": os.path.join(os.getcwd(), "oauth.txt"),
|
||||
"default_actions": [
|
||||
"clobber",
|
||||
"read-buildbot-config",
|
||||
|
@ -30,8 +30,6 @@ config = {
|
||||
},
|
||||
"title": os.uname()[1].lower().split('.')[0],
|
||||
"results_url": "http://graphs.mozilla.org/server/collect.cgi",
|
||||
"datazilla_urls": ["https://datazilla.mozilla.org/talos"],
|
||||
"datazilla_authfile": os.path.join(os.getcwd(), "oauth.txt"),
|
||||
"default_actions": [
|
||||
"clobber",
|
||||
"read-buildbot-config",
|
||||
|
@ -29,8 +29,6 @@ config = {
|
||||
},
|
||||
"title": socket.gethostname().split('.')[0],
|
||||
"results_url": "http://graphs.mozilla.org/server/collect.cgi",
|
||||
"datazilla_urls": ["https://datazilla.mozilla.org/talos"],
|
||||
"datazilla_authfile": os.path.join(os.getcwd(), "oauth.txt"),
|
||||
"default_actions": [
|
||||
"clobber",
|
||||
"read-buildbot-config",
|
||||
|
@ -444,13 +444,6 @@ class Talos(TestingMixin, MercurialScript, BlobUploadMixin):
|
||||
kw_options['activeTests'] = tests
|
||||
for key, value in kw_options.items():
|
||||
options.extend(['--%s' % key, value])
|
||||
# add datazilla results urls
|
||||
for url in self.config.get('datazilla_urls', []):
|
||||
options.extend(['--datazilla-url', url])
|
||||
# add datazilla authfile
|
||||
authfile = self.config.get('datazilla_authfile')
|
||||
if authfile:
|
||||
options.extend(['--authfile', authfile])
|
||||
# configure profiling options
|
||||
options.extend(self.query_sps_profile_options())
|
||||
# extra arguments
|
||||
|
@ -383,12 +383,6 @@ class PandaTalosTest(TestingMixin, MercurialScript, BlobUploadMixin, MozpoolMixi
|
||||
if self.config['%s_options' % suite_category]:
|
||||
for option in self.config['%s_options' % suite_category]:
|
||||
options.append(option % str_format_values)
|
||||
for url in self.config.get('datazilla_urls', []):
|
||||
options.extend(['--datazilla-url', url])
|
||||
# add datazilla authfile
|
||||
authfile = self.config.get('datazilla_authfile')
|
||||
if authfile:
|
||||
options.extend(['--authfile', authfile])
|
||||
abs_base_cmd = base_cmd + options
|
||||
return abs_base_cmd
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user