本文整理汇总了Python中treeherder.client.TreeherderClient.get_machines方法的典型用法代码示例。如果您正苦于以下问题:Python TreeherderClient.get_machines方法的具体用法?Python TreeherderClient.get_machines怎么用?Python TreeherderClient.get_machines使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类treeherder.client.TreeherderClient
的用法示例。
在下文中一共展示了TreeherderClient.get_machines方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: handle
# 需要导入模块: from treeherder.client import TreeherderClient [as 别名]
# 或者: from treeherder.client.TreeherderClient import get_machines [as 别名]
def handle(self, *args, **options):
c = TreeherderClient(server_url=options['server'])
# options / option collection hashes
for (uuid, props) in c.get_option_collection_hash().iteritems():
for prop in props:
option, _ = Option.objects.get_or_create(name=prop['name'])
OptionCollection.objects.get_or_create(
option_collection_hash=uuid,
option=option)
# machine platforms
for machine_platform in c.get_machine_platforms():
MachinePlatform.objects.get_or_create(
os_name=machine_platform['os_name'],
platform=machine_platform['platform'],
architecture=machine_platform['architecture'])
# machine
for machine in c.get_machines():
Machine.objects.get_or_create(
id=machine['id'],
name=machine['name'],
defaults={
'first_timestamp': machine['first_timestamp'],
'last_timestamp': machine['last_timestamp']
})
# job group
for job_group in c.get_job_groups():
JobGroup.objects.get_or_create(
id=job_group['id'],
symbol=job_group['symbol'],
name=job_group['name'],
defaults={
'description': job_group['description']
})
# job type
for job_type in c.get_job_types():
try:
jgroup = JobGroup.objects.get(id=job_type['job_group'])
JobType.objects.get_or_create(
id=job_type['id'],
symbol=job_type['symbol'],
name=job_type['name'],
defaults={
'job_group': jgroup,
'description': job_type['description']
})
except JobGroup.DoesNotExist:
# ignore job types whose job group does not exist
self.stderr.write("WARNING: Job type '{}' ({}) references a "
"job group ({}) which does not have an "
"id".format(job_type['symbol'], job_type['name'],
job_type['job_group']))
# product
for product in c.get_products():
Product.objects.get_or_create(
id=product['id'],
name=product['name'],
defaults={
'description': product['description']
})
# failure classification
for failure_classification in c.get_failure_classifications():
FailureClassification.objects.get_or_create(
id=failure_classification['id'],
name=failure_classification['name'],
defaults={
'description': failure_classification['description']
})
# build platform
for build_platform in c.get_build_platforms():
BuildPlatform.objects.get_or_create(
id=build_platform['id'],
os_name=build_platform['os_name'],
defaults={
'platform': build_platform['platform'],
'architecture': build_platform['architecture']
})
# repository and repository group
for repository in c.get_repositories():
rgroup, _ = RepositoryGroup.objects.get_or_create(
name=repository['repository_group']['name'],
description=repository['repository_group']['description']
)
Repository.objects.get_or_create(
id=repository['id'],
repository_group=rgroup,
name=repository['name'],
dvcs_type=repository['dvcs_type'],
url=repository['url'],
defaults={
'codebase': repository['codebase'],
'description': repository['description'],
#.........这里部分代码省略.........
示例2: handle
# 需要导入模块: from treeherder.client import TreeherderClient [as 别名]
# 或者: from treeherder.client.TreeherderClient import get_machines [as 别名]
def handle(self, *args, **options):
server_params = urlparse(options['server'])
c = TreeherderClient(protocol=server_params.scheme,
host=server_params.netloc)
# options / option collection hashes
for (uuid, props) in c.get_option_collection_hash().iteritems():
for prop in props:
option, _ = Option.objects.get_or_create(name=prop['name'])
OptionCollection.objects.get_or_create(
option_collection_hash=uuid,
option=option)
# machine platforms
for machine_platform in c.get_machine_platforms():
MachinePlatform.objects.get_or_create(
os_name=machine_platform['os_name'],
platform=machine_platform['platform'],
architecture=machine_platform['architecture'],
defaults={
'active_status': machine_platform['active_status']
})
# machine
for machine in c.get_machines():
Machine.objects.get_or_create(
id=machine['id'],
name=machine['name'],
defaults={
'first_timestamp': machine['first_timestamp'],
'last_timestamp': machine['last_timestamp'],
'active_status': machine['active_status']
})
# job group
for job_group in c.get_job_groups():
JobGroup.objects.get_or_create(
id=job_group['id'],
symbol=job_group['symbol'],
name=job_group['name'],
defaults={
'description': job_group['description'],
'active_status': job_group['active_status']
})
# job type
for job_type in c.get_job_types():
jgroup = JobGroup.objects.get(id=job_type['job_group'])
JobType.objects.get_or_create(
id=job_type['id'],
symbol=job_type['symbol'],
name=job_type['name'],
defaults={
'job_group': jgroup,
'description': job_type['description'],
'active_status': job_type['active_status']
})
# product
for product in c.get_products():
Product.objects.get_or_create(
id=product['id'],
name=product['name'],
defaults={
'description': product['description'],
'active_status': product['active_status']
})
# failure classification
for failure_classification in c.get_failure_classifications():
FailureClassification.objects.get_or_create(
id=failure_classification['id'],
name=failure_classification['name'],
defaults={
'description': failure_classification['description'],
'active_status': failure_classification['active_status']
})
# build platform
for build_platform in c.get_build_platforms():
BuildPlatform.objects.get_or_create(
id=build_platform['id'],
os_name=build_platform['os_name'],
defaults={
'platform': build_platform['platform'],
'architecture': build_platform['architecture'],
'active_status': build_platform['active_status']
})
# repository and repository group
for repository in c.get_repositories():
rgroup, _ = RepositoryGroup.objects.get_or_create(
name=repository['repository_group']['name'],
description=repository['repository_group']['description']
)
Repository.objects.get_or_create(
id=repository['id'],
repository_group=rgroup,
name=repository['name'],
dvcs_type=repository['dvcs_type'],
#.........这里部分代码省略.........