From 50e8ad3b05eff644fc5cb8e123cb84f17dfca5d6 Mon Sep 17 00:00:00 2001 From: Tokesh Date: Sun, 22 Dec 2024 18:19:46 +0500 Subject: [PATCH] ci-merger Signed-off-by: Tokesh --- .github/workflows/test-spec.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-spec.yml b/.github/workflows/test-spec.yml index d166b375..39047ed6 100644 --- a/.github/workflows/test-spec.yml +++ b/.github/workflows/test-spec.yml @@ -166,10 +166,14 @@ jobs: jq -sc ' (map(.operations) | add | unique | length) as $total_operations_count | (map(.evaluated_operations) | add | unique | length) as $evaluated_operations_count | - { + { total_operations_count: $total_operations_count, evaluated_operations_count: $evaluated_operations_count, - evaluated_paths_pct: $evaluated_operations_count | (10000 * . / $total_operations_count | round / 100) + evaluated_paths_pct: ( + $evaluated_operations_count | (10000 * . / $total_operations_count | round / 100) + ), + operations_list: (map(.operations) | add | unique), + evaluated_operations_list: (map(.evaluated_operations) | add | unique) } ' $(find ./coverage -name "test-spec-coverage-*.json") > ./coverage/coverage.json cat ./coverage/coverage.json