Skip to content

Commit 68d3945

Browse files
committed
Add critical level to reasoner validator checks
1 parent 1465c15 commit 68d3945

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test_cohd_trapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def _validate_trapi_response(response):
4747
vms = validate_trapi_response(TRAPI_VERSION, BIOLINK_VERSION, response)
4848

4949
# expect no validation errors
50-
assert len(vms['errors']) == 0
50+
assert len(vms['errors']) == 0 and len(vms['critical']) == 0, print(vms)
5151

5252
# If there are validation warnings, display them, but don't fail
5353
if len(vms['warnings']) > 0:

0 commit comments

Comments
 (0)