skip wifi tests for EON panda build

master
Adeeb Shihadeh 2019-07-02 20:05:33 -07:00
parent 11257e79a5
commit e2981d6120
1 changed files with 3 additions and 1 deletions

View File

@ -2,8 +2,10 @@
TEST_FILENAME=${TEST_FILENAME:-nosetests.xml}
if [ ! -f "/EON" ]; then
TESTSUITE_NAME="Panda_Test-EON"
TEST_SCRIPTS=$(ls tests/automated/$1*.py | grep -v "wifi")
else
TESTSUITE_NAME="Panda_Test-DEV"
TEST_SCRIPTS=$(ls tests/automated/$1*.py)
fi
cd boardesp
@ -16,4 +18,4 @@ 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
PYTHONPATH="." python $(which nosetests) -v --with-xunit --xunit-file=./$TEST_FILENAME --xunit-testsuite-name=$TESTSUITE_NAME -s $TEST_SCRIPTS