You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
list_executions.return_value.status_code=400#we might need a separate try except here to show that 404 statement is weird and should exit the program
74
+
list_executions.return_value.status_code=400#test case worked with .return_value.status_code but caused an HTTP error that said error with list_Executions
75
75
withpytest.raises(HTTPError):
76
76
se.create_score_execution(
77
77
score_definition_id="12345"
78
78
)
79
79
80
-
list_executions.status_code=200
80
+
list_executions.status_code=200#why does this not have a return value and how is this related to different score_Defintion instantiation in score_execution
0 commit comments