application_quality_checker

class ApplicationQualityChecker(utils.quality_checker.QualityChecker):
@classmethod
def fields(cls):

The fields that this checker can check. Used for rendering the reports and quality reminder e-mails.

@classmethod
def check(cls, fact_sheet):

The checker logic. Calculates and returns the quality metrics for an utils.fact_sheet_types.Application fact sheet.

@classmethod
def preload(cls):

In case you want to preload some fact sheet types to improve processing speed, please do it here. Note that if you don't do this, all related FS types will be requested individually, which can take some time.

Inherited Members
utils.quality_checker.QualityChecker
initialize