Bug 1172918 - Clean up talos options that are not used (removing from mozharness). r=jmaher

--HG--
extra : rebase_source : 62cd572974cf92b4c56eba4f4433e0761d5f4dcb
This commit is contained in:
Julien Pagès 2015-07-20 17:32:41 +02:00
parent d285eb00b3
commit 8cb39f819f
6 changed files with 0 additions and 21 deletions

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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

View File

@ -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: