-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EVA-3695 Save validation results in a separate yaml file #67
EVA-3695 Save validation results in a separate yaml file #67
Conversation
…ion was performed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Couple of comments you can address at your leasure
eva_sub_cli/validators/validator.py
Outdated
# vcf_check result | ||
vcf_check_result = all((vcf_check.get('critical_count', 1) == 0 | ||
for vcf_name, vcf_check in self.results.get('vcf_check', {}).items())) | ||
self.results['vcf_check']['PASS'] = vcf_check_result |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
personal preference I guess but I would prefer lower case pass
key.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
No description provided.