898997badf
Previously UT succeeds even if horizon UT fails. Change-Id: Id5a08a3877b50fc582145ee74dc1c88cfb3fbba9
51 lines
1.6 KiB
Bash
Executable File
51 lines
1.6 KiB
Bash
Executable File
# Uses envpython and toxinidir from tox run to construct a test command
|
|
testcommand="${1} ${2}/manage.py test"
|
|
posargs="${@:3}"
|
|
|
|
tagarg="--exclude-tag selenium --exclude-tag integration"
|
|
|
|
if [[ -n "${WITH_SELENIUM}" ]]
|
|
then
|
|
tagarg="--tag selenium"
|
|
elif [[ -n "${INTEGRATION_TESTS}" ]]
|
|
then
|
|
tagarg="--tag integration"
|
|
#else
|
|
# tag="unit"
|
|
fi
|
|
|
|
# Attempt to identify if any of the arguments passed from tox is a test subset
|
|
if [ -n "$posargs" ]; then
|
|
for arg in "$posargs"
|
|
do
|
|
if [ ${arg:0:1} != "-" ]; then
|
|
subset=$arg
|
|
fi
|
|
done
|
|
fi
|
|
|
|
# If we are running a test subset, supply the correct settings file.
|
|
# If not, simply run the entire test suite.
|
|
if [ -n "$subset" ]; then
|
|
project="${subset%%.*}"
|
|
if [ $project == "horizon" ]; then
|
|
$testcommand --settings=horizon.test.settings --verbosity 2 $tagarg $posargs
|
|
elif [ $project == "openstack_dashboard" ]; then
|
|
$testcommand --settings=openstack_dashboard.test.settings --verbosity 2 $tagarg $posargs
|
|
elif [ $project == "openstack_auth" ]; then
|
|
$testcommand --settings=openstack_auth.tests.settings --verbosity 2 $tagarg $posargs
|
|
fi
|
|
else
|
|
$testcommand horizon --settings=horizon.test.settings --verbosity 2 $tagarg $posargs
|
|
horizon_tests=$?
|
|
$testcommand openstack_dashboard --settings=openstack_dashboard.test.settings --verbosity 2 $tagarg $posargs
|
|
openstack_dashboard_tests=$?
|
|
$testcommand openstack_auth --settings=openstack_auth.tests.settings --verbosity 2 $tagarg $posargs
|
|
auth_tests=$?
|
|
# we have to tell tox if either of these test runs failed
|
|
if [[ $horizon_tests != 0 || $openstack_dashboard_tests != 0 || \
|
|
$auth_tests != 0 ]]; then
|
|
exit 1;
|
|
fi
|
|
fi
|