More CI test updates

This commit is contained in:
Scott Lahteine 2020-01-17 03:11:24 -06:00
parent e94f782f51
commit 9520e5121c

View File

@ -10,7 +10,7 @@ set -e
exec_test () {
printf "\n\033[0;32m[Test $2] \033[0m$3...\n"
if platformio run --project-dir $1 "-e $2" --silent; then
if platformio run --project-dir $1 -e $2 --silent; then
printf "\033[0;32mPassed\033[0m\n"
return 0
else