Print the compared SHAs

This commit is contained in:
Jakub Beránek
2025-03-13 13:18:47 +01:00
parent 208cef45fc
commit 2192d5c4e2
+2
View File
@@ -14,6 +14,8 @@
pub fn post_merge_report(job_db: JobDatabase, parent: Sha, current: Sha) -> anyhow::Result<()> {
let jobs = download_all_metrics(&job_db, &parent, &current)?;
let diffs = aggregate_test_diffs(&jobs)?;
println!("Comparing {parent} (base) -> {current} (this PR)\n");
report_test_changes(diffs);
Ok(())