You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
296 B
9 lines
296 B
#!/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
|
|
|