Skip to content

Commit

Permalink
fixing merge ci
Browse files Browse the repository at this point in the history
Signed-off-by: Tokesh <[email protected]>
  • Loading branch information
Tokesh committed Dec 22, 2024
1 parent 4658fb3 commit 263569e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ jobs:
total_operations_count: ($all_operations | length),
evaluated_operations_count: ($evaluated_operations | length),
evaluated_paths_pct: (
$evaluated_operations_count | (10000 * . / $total_operations_count | round / 100)
if $total_operations_count == 0 then 0
else ($evaluated_operations | length * 100) / $total_operations_count
end
),
operations_list: $all_operations,
evaluated_operations_list: $evaluated_operations
Expand Down

0 comments on commit 263569e

Please sign in to comment.