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
-
)
432
+
result=awaitexecute_pytest(
433
+
test_func,
434
+
processed_row=row,
435
+
evaluation_test_kwargs=evaluation_test_kwargs,
436
+
)
446
437
ifnotisinstance(result, EvaluationRow):
447
438
raiseValueError(
448
439
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
-
)
458
+
results=awaitexecute_pytest(
459
+
test_func,
460
+
processed_dataset=rows,
461
+
evaluation_test_kwargs=evaluation_test_kwargs,
462
+
)
481
463
ifnotisinstance(results, list):
482
464
raiseValueError(
483
465
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