Skip to content

Commit

Permalink
OBS: Be more conservative in setting test successors
Browse files Browse the repository at this point in the history
Don't only do it for new tests, but also on later runs. If something went
wrong and the marking somehow failed, just try again.
  • Loading branch information
patrickbkr committed Nov 1, 2022
1 parent f73a126 commit 353ad1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/OBS.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ method process-worklist() is serial-dedup {

$test.^save;

if $test-is-new && $running-pts.re-test {
if $running-pts.re-test {
with DB::CITest.^all.first({
$_.platform-test-set.id == $running-pts.id &&
$_.name eq $test-name &&
Expand Down

0 comments on commit 353ad1f

Please sign in to comment.