mirror of https://github.com/commaai/panda.git
skip wifi tests for EON panda build
This commit is contained in:
parent
11257e79a5
commit
e2981d6120
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue