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
reason=f"Error during evaluation: {type(e).__name__}: {e}",
445
+
)
437
446
ifnotisinstance(result, EvaluationRow):
438
447
raiseValueError(
439
448
f"Test function {test_func.__name__} did not return an EvaluationRow instance. You must return an EvaluationRow instance from your test function decorated with @evaluation_test."
reason=f"Error during evaluation: {type(e).__name__}: {e}",
480
+
)
463
481
ifnotisinstance(results, list):
464
482
raiseValueError(
465
483
f"Test function {test_func.__name__} did not return a list of EvaluationRow instances. You must return a list of EvaluationRow instances from your test function decorated with @evaluation_test."
0 commit comments