diff --git a/run_automated_tests.sh b/run_automated_tests.sh index 4e07d329cace20..92ccbe84942806 100755 --- a/run_automated_tests.sh +++ b/run_automated_tests.sh @@ -10,5 +10,10 @@ cd boardesp make flashall cd .. +IFS=$'\n' +for NAME in $(nmcli --fields NAME con show | grep panda | awk '{$1=$1};1') +do + nmcli connection delete "$NAME" +done PYTHONPATH="." python $(which nosetests) -v --with-xunit --xunit-file=./$TEST_FILENAME --xunit-testsuite-name=$TESTSUITE_NAME -s tests/automated/$1*.py