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
f"FAILURE: Import time regression of {diff:.2f} ms exceeds both the absolute threshold ({diff_threshold} ms) "
272
+
f"and the relative threshold ({relative_diff_threshold:.2f} ms, 15% of baseline P99)."
273
+
)
270
274
exit_code=1
271
275
else:
272
-
final_messages.append("SUCCESS: Import time diff is within acceptable thresholds.")
276
+
ifdiff>diff_threshold:
277
+
final_messages.append(f"SUCCESS: Import time regression of {diff:.2f} ms exceeds absolute threshold ({diff_threshold} ms) but is within relative threshold ({relative_diff_threshold:.2f} ms, 15%).")
278
+
else:
279
+
final_messages.append("SUCCESS: Import time diff is within acceptable thresholds.")
273
280
else:
274
281
final_messages.append(f"WARNING: Baseline CSV {diff_baseline} not found. Skipping diff check.")
0 commit comments