Skip to content

Commit 50e1ef3

Browse files
committed
Test 5, fetch test names
1 parent 1a17431 commit 50e1ef3

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/hil-library-test.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -145,18 +145,14 @@ jobs:
145145
146146
# loop over all tests
147147
readarray -t TESTS < <(echo $hil | jq ".\"${{ env.library }}\".\"${DEVICE}\" | keys[]" -r --compact-output)
148-
echo "Tests: ${TESTS[@]}"
149-
150-
151148
for ((tidx=0; tidx<${#TESTS[@]}; tidx++)); do
152-
readarray -t MAKES < <(echo $hil | jq ".\"${{ env.library }}\".\"${DEVICE}\".\"${TESTS[$tidx]}\"|[]" -r --compact-output)
149+
readarray -t MAKES < <(echo $hil | jq ".\"${{ env.library }}\".\"${DEVICE}\".\"${TESTS[$tidx]}\"" -r --compact-output)
153150
echo $(echo $hil | jq ".\"${{ env.library }}\".\"${DEVICE}\".\"${TESTS[$tidx]}\"|.[]" -r --compact-output)
154151
155152
156153
157154
echo $tidx
158155
echo ${MAKES[@]}
159-
echo $TESTS[$tidx]
160156
161157
# loop over all makes in the test for sender receiver tests
162158
for ((midx=0; midx<${#MAKES[@]}; midx++)); do
@@ -171,7 +167,6 @@ jobs:
171167

172168
echo "FQBN: $FQBN"
173169
echo "Device: $DEVICE"
174-
echo "Test: $TESTS[$idx]"
175170
echo "Port: $PORTS[$idx]"
176171

177172
done

0 commit comments

Comments
 (0)