Skip to content

Commit

Permalink
include spurius-regress in regressed list
Browse files Browse the repository at this point in the history
  • Loading branch information
Skgland committed May 31, 2024
1 parent e4200ad commit bf64ff9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/report/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,9 @@ fn gen_retry_list(res: &RawTestResults) -> String {
let regressed_crates = res
.crates
.iter()
.filter(|crate_res| crate_res.res == Comparison::Regressed)
.filter(|crate_res| {
crate_res.res == Comparison::Regressed || crate_res.res == Comparison::SpuriousRegressed
})
.map(|crate_res| &crate_res.krate);

for krate in regressed_crates {
Expand Down

0 comments on commit bf64ff9

Please sign in to comment.