Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasssvaz committed Apr 23, 2024
1 parent ef00802 commit b0d0223
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/scripts/tests_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function run_test() {
fi

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

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

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

0 comments on commit b0d0223

Please sign in to comment.