Skip to content

Commit 9d1c717

Browse files
authored
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
1 parent 8b0a0c3 commit 9d1c717

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crates/report-processor/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ fn main() -> Result<()> {
7373
Status::from(status),
7474
)
7575
})
76+
.filter(|(_, status)| *status == Status::Failed)
7677
.collect::<Expectations>();
7778

7879
let output_file = OpenOptions::new()

0 commit comments

Comments
 (0)