We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a66c307 commit c6e7478Copy full SHA for c6e7478
.github/scripts/tests_run.sh
@@ -88,7 +88,6 @@ function run_test() {
88
bash -c "pytest tests --build-dir $build_dir -k test_$sketchname --junit-xml=$report_file $extra_args"
89
result=$?
90
set -e # Enable exit on error
91
- echo "Test $sketchname return code: $result"
92
if [ $result -ne 0 ]; then
93
error=$result
94
fi
@@ -227,7 +226,7 @@ else
227
226
228
start_num=$(( $start_index + 1 ))
229
sketchnum=0
230
- local error=0
+ error=0
231
232
for sketch in $sketches; do
233
@@ -240,7 +239,7 @@ else
240
239
echo "Sketch Index $(($sketchnum - 1))"
241
242
run_test $target $sketch $options $erase
243
- local exit_code=$?
+ exit_code=$?
244
if [ $exit_code -ne 0 ]; then
245
error=$exit_code
246
0 commit comments