Add function to get the number of required tests for a part

This commit is contained in:
Oliver Walters 2020-05-23 14:28:25 +10:00
parent e63342418f
commit 01481ef5c9

View File

@ -1033,6 +1033,9 @@ class Part(MPTTModel):
# Return the tests which are required by this part
return self.getTestTemplates(required=True)
def requiredTestCount(self):
return self.getRequiredTests().count()
@property
def attachment_count(self):
""" Count the number of attachments for this part.