Skip to content

Commit

Permalink
ci(ruby): fix python-test-with-coverage xq usage
Browse files Browse the repository at this point in the history
The script uses the Go xq tool, not the Python one.
  • Loading branch information
vpayno committed Apr 4, 2024
1 parent 1ba4c79 commit 2c17128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/citools/ruby/ruby-test-with-coverage
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ main() {
print_ruler

local coverage_raw
coverage_raw="$(xq -q coverage -a line-rate ./coverage/coverage.xml)"
coverage_raw="$("${GOBIN}/xq" -q coverage -a line-rate ./coverage/coverage.xml)"
printf "Coverage: %.1f%%\n" "$(bc <<<"scale=1; ${coverage_raw}* 100")"

print_ruler
Expand Down

0 comments on commit 2c17128

Please sign in to comment.