bagit-profiles / bagit-profiles-validator

A simple Python module for validating BagIt Profiles.
The Unlicense
12 stars 6 forks source link

Validation of Required Tags breaks after one run #26

Open mwindrath opened 1 year ago

mwindrath commented 1 year ago

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.