Skip to content

Commit

Permalink
ui: status: fix counting pending results as not missing
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Kicinski <[email protected]>
  • Loading branch information
kuba-moo committed Jun 4, 2024
1 parent 8ccbce5 commit becf42e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ui/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,13 +456,15 @@ function load_partial_tests(data)

if (!missing)
continue;
for (const pending in Object.keys(pending_executors)) {
for (const pending of Object.keys(pending_executors)) {
if (name.startsWith(pending)) {
if (missing == pending_executors[pending])
continue;
missing = 0;
break;
}
}
if (!missing)
continue;

let row = table.insertRow();
row.insertCell(0).innerHTML = name;
Expand Down

0 comments on commit becf42e

Please sign in to comment.