Skip to content

Commit ebfe1c5

Browse files
committed
Merge branch 'master' of github.com:commaai/panda into memxxx
2 parents db2eec9 + 8c11470 commit ebfe1c5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

run_automated_tests.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
#!/bin/bash
22
TEST_FILENAME=${TEST_FILENAME:-nosetests.xml}
3-
if [ ! -f "/EON" ]; then
3+
if [ -f "/EON" ]; then
44
TESTSUITE_NAME="Panda_Test-EON"
5+
TEST_SCRIPTS=$(ls tests/automated/$1*.py | grep -v "wifi")
56
else
67
TESTSUITE_NAME="Panda_Test-DEV"
8+
TEST_SCRIPTS=$(ls tests/automated/$1*.py)
79
fi
810

911
cd boardesp
@@ -16,4 +18,4 @@ do
1618
nmcli connection delete "$NAME"
1719
done
1820

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

0 commit comments

Comments
 (0)