Skip to content

Commit 6973c2a

Browse files
committed
fix wifi tests
1 parent 3a6cd29 commit 6973c2a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

run_automated_tests.sh

+5
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,10 @@ cd boardesp
1010
make flashall
1111
cd ..
1212

13+
IFS=$'\n'
14+
for NAME in $(nmcli --fields NAME con show | grep panda | awk '{$1=$1};1')
15+
do
16+
nmcli connection delete "$NAME"
17+
done
1318

1419
PYTHONPATH="." python $(which nosetests) -v --with-xunit --xunit-file=./$TEST_FILENAME --xunit-testsuite-name=$TESTSUITE_NAME -s tests/automated/$1*.py

0 commit comments

Comments
 (0)