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.
10 lines
296 B
10 lines
296 B
7 years ago
|
#!/bin/bash
|
||
6 years ago
|
TEST_FILENAME=${TEST_FILENAME:-nosetests.xml}
|
||
|
if [ ! -f "/EON" ]; then
|
||
|
TESTSUITE_NAME="Panda_Test-EON"
|
||
|
else
|
||
|
TESTSUITE_NAME="Panda_Test-DEV"
|
||
|
fi
|
||
7 years ago
|
|
||
6 years ago
|
PYTHONPATH="." nosetests -v --with-xunit --xunit-file=./$TEST_FILENAME --xunit-testsuite-name=$TESTSUITE_NAME -s tests/automated/$1*.py
|