本文整理汇总了Python中FedoraReview.Mock.rpmlint_rpms方法的典型用法代码示例。如果您正苦于以下问题:Python Mock.rpmlint_rpms方法的具体用法?Python Mock.rpmlint_rpms怎么用?Python Mock.rpmlint_rpms使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FedoraReview.Mock
的用法示例。
在下文中一共展示了Mock.rpmlint_rpms方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: run
# 需要导入模块: from FedoraReview import Mock [as 别名]
# 或者: from FedoraReview.Mock import rpmlint_rpms [as 别名]
def run(self):
if self.checks.checkdict['CheckPackageInstalls'].is_passed:
rpms = Mock.get_package_rpm_paths(self.spec)
no_errors, retcode = Mock.rpmlint_rpms(rpms)
text = 'No rpmlint messages.' if no_errors else \
'There are rpmlint messages (see attachment).'
attachments = \
[self.Attachment('Rpmlint (installed packages)',
retcode + '\n', 5)]
self.set_passed(self.PASS, text, attachments)
else:
self.set_passed(self.FAIL, 'Mock build failed')
示例2: run
# 需要导入模块: from FedoraReview import Mock [as 别名]
# 或者: from FedoraReview.Mock import rpmlint_rpms [as 别名]
def run(self):
if not Mock.is_available():
self.set_passed(self.NA)
return
if self.checks.checkdict['CheckPackageInstalls'].is_passed:
rpms = Mock.get_package_rpm_paths(self.spec)
rpms.extend(
Mock.get_package_debuginfo_paths(self.spec.get_package_nvr()))
no_errors, retcode = Mock.rpmlint_rpms(rpms)
text = 'No rpmlint messages.' if no_errors else \
'There are rpmlint messages (see attachment).'
attachments = \
[self.Attachment('Rpmlint (installed packages)',
retcode + '\n', 7)]
self.set_passed(self.PASS, text, attachments)
else:
self.set_passed(self.FAIL, 'Mock build failed')