bagit-profiles/bagit-profiles-validator

Validation of Required Tags breaks after one run

mwindrath opened this issue · 0 comments

if i validate my profile against multiple required tags, the script stops at the first missing required tag

to get all missing required tags, i disable the call of the ProfileValidationError in the _fail method

def _fail(self, msg): logging.error(msg) #raise ProfileValidationError(msg)

unfortunately, my experience with oop is limited.