mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-09-14 19:43:50 +08:00
51d123999d
old-commit-hash: 7834995df4e74fb14ec685c9b2cf087afad11d2f
10 lines
296 B
Bash
Executable File
10 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
TEST_FILENAME=${TEST_FILENAME:-nosetests.xml}
|
|
if [ ! -f "/EON" ]; then
|
|
TESTSUITE_NAME="Panda_Test-EON"
|
|
else
|
|
TESTSUITE_NAME="Panda_Test-DEV"
|
|
fi
|
|
|
|
PYTHONPATH="." nosetests -v --with-xunit --xunit-file=./$TEST_FILENAME --xunit-testsuite-name=$TESTSUITE_NAME -s tests/automated/$1*.py
|