diff --git a/src/crewai/crew.py b/src/crewai/crew.py index 2109b1262..1e8d83ab4 100644 --- a/src/crewai/crew.py +++ b/src/crewai/crew.py @@ -936,10 +936,11 @@ class Crew(BaseModel): inputs: Optional[Dict[str, Any]] = None, ) -> None: """Test and evaluate the Crew with the given inputs for n iterations concurrently using concurrent.futures.""" + # type: ignore[arg-type] self._test_execution_span = self._telemetry.test_execution_span( self, n_iterations, inputs, openai_model_name ) - evaluator = CrewEvaluator(self, openai_model_name) + evaluator = CrewEvaluator(self, openai_model_name) # type: ignore[arg-type] for i in range(1, n_iterations + 1): evaluator.set_iteration(i)