We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fce8bd8 commit 81d4499Copy full SHA for 81d4499
.github/scripts/tests_run.sh
@@ -95,13 +95,12 @@ function run_test() {
95
printf "\033[95mpytest tests --build-dir $build_dir -k test_$sketchname --junit-xml=$report_file $extra_args\033[0m\n"
96
bash -c "set +e; pytest tests --build-dir $build_dir -k test_$sketchname --junit-xml=$report_file $extra_args; exit \$?" || result=$?
97
printf "\n"
98
- result=$?
99
if [ $result -ne 0 ]; then
+ printf "\033[91mFailed test: $sketchname -- Config: $i\033[0m\n\n"
100
error=$result
101
fi
102
103
done
104
- printf "Test return code: $error\n"
105
return $error
106
}
107
@@ -250,7 +249,6 @@ else
250
249
251
exit_code=0
252
run_test $target $sketch $options $erase || exit_code=$?
253
- echo "Sketch $sketch exit code: $exit_code"
254
if [ $exit_code -ne 0 ]; then
255
error=$exit_code
256
0 commit comments