We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 251053f commit b6128f6Copy full SHA for b6128f6
1 file changed
lib/bazel-bep.bash
@@ -103,6 +103,7 @@ process_bep() {
103
label=$(echo "$line" | jq -r '.id.targetCompleted.label // "unknown"')
104
local success
105
success=$(echo "$line" | jq -r '.completed.success // "false"')
106
+ # shellcheck disable=SC2034
107
local is_cached=false
108
109
# Check if the target was cached
@@ -290,6 +291,7 @@ process_bep() {
290
291
# First sort the tests by duration (longest first)
292
# sorted_indexes is kept for potential future implementation of index tracking
293
# or for maintaining references to original array positions
294
295
local sorted_indexes=()
296
local sorted_times=()
297
local sorted_tests=()
0 commit comments