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
print("Found matching TestResult for AI result:",ref)
87
+
logger.debug("Found matching TestResult for AI result: %s", ref)
85
88
ref.score=ai_result.score
86
89
ref.report=ai_result.feedback
87
-
print(f"Mapped AI result '{ai_result.title}' with score {ai_result.score} to TestResult.")
90
+
logger.info("Mapped AI result '%s' with score %s to TestResult.", ai_result.title, ai_result.score)
88
91
else:
89
-
print(f"No matching TestResult found for AI result '{ai_result.title}'.")
92
+
logger.warning("No matching TestResult found for AI result '%s'.", ai_result.title)
90
93
91
94
92
95
@@ -151,10 +154,10 @@ def stop(self):
151
154
lembre-se: os nomes dos testes devem corresponder exatamente aos nomes fornecidos na lista de testes. não mude a formatação ou a estrutura dos titulos dos tests.
0 commit comments