From 9d1c71756fec8eadfb964b6f47f8207bd838d59d Mon Sep 17 00:00:00 2001 From: Omar Date: Fri, 16 Jan 2026 19:21:36 +0300 Subject: [PATCH] Update Report Processor (#227) * Add a report processing tool * Add expectations tests to the CI action * Fix an issue with CI * Fix CI * Fix the path of the workdir in CI * Fix CI issue with the paths * Update the format of the expectations file * Update report processor to only include failures --- crates/report-processor/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/report-processor/src/main.rs b/crates/report-processor/src/main.rs index ae6fa46..2d2b013 100644 --- a/crates/report-processor/src/main.rs +++ b/crates/report-processor/src/main.rs @@ -73,6 +73,7 @@ fn main() -> Result<()> { Status::from(status), ) }) + .filter(|(_, status)| *status == Status::Failed) .collect::(); let output_file = OpenOptions::new()