Skip to content

Commit

Permalink
Add default severity to undocumented checks
Browse files Browse the repository at this point in the history
  • Loading branch information
the-glu committed Jan 14, 2025
1 parent 9a84926 commit fd87973
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion monitoring/uss_qualifier/scenarios/scenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,10 @@ def check(
check_list = ", ".join(available_checks)
if self._allow_undocumented_checks:
check_documentation = TestCheckDocumentation(
name=name, applicable_requirements=[], has_todo=False
name=name,
applicable_requirements=[],
has_todo=False,
severity=Severity.Medium,
)
else:
test_step_name = (
Expand Down

0 comments on commit fd87973

Please sign in to comment.