Skip to content

Commit b0d0223

Browse files
committed
Fix
1 parent ef00802 commit b0d0223

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: .github/scripts/tests_run.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function run_test() {
3939
fi
4040

4141
if [ $platform == "qemu" ]; then
42-
extra_args="--embedded-services qemu --qemu-img-path $build_dir/$sketchname.ino.bin"
42+
extra_args="--embedded-services qemu --qemu-image-path $build_dir/$sketchname.ino.bin"
4343

4444
if [ $target == "esp32" ] || [ $target == "esp32s3" ]; then
4545
extra_args+=" --qemu-prog-path $QEMU_PATH/qemu-system-xtensa --qemu-cli-args \"-nographic -machine $target\""
@@ -50,7 +50,6 @@ function run_test() {
5050
extra_args="--embedded-services esp,arduino"
5151
fi
5252

53-
echo "pytest tests --build-dir $build_dir -k test_$sketchname --junit-xml=$report_file $extra_args"
5453
pytest tests --build-dir $build_dir -k test_$sketchname --junit-xml=$report_file $extra_args
5554
result=$?
5655
if [ $result -ne 0 ]; then

0 commit comments

Comments
 (0)