We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a6cd29 commit 6973c2aCopy full SHA for 6973c2a
run_automated_tests.sh
@@ -10,5 +10,10 @@ cd boardesp
10
make flashall
11
cd ..
12
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
18
19
PYTHONPATH="." python $(which nosetests) -v --with-xunit --xunit-file=./$TEST_FILENAME --xunit-testsuite-name=$TESTSUITE_NAME -s tests/automated/$1*.py
0 commit comments