Show test names and results instead of "." and "S"

Change-Id: Id36685d303c15af71aeffaf73f859039064ee4d4
This commit is contained in:
Igor Malinovskiy 2015-05-25 13:46:10 +03:00
parent 6c2c2769d6
commit 3109bf2634
1 changed files with 2 additions and 2 deletions

View File

@ -331,7 +331,7 @@ function run_tests {
function run_tests_subset {
project=`echo $testargs | awk -F. '{print $1}'`
${command_wrapper} python $root/manage.py test --settings=$project.test.settings $testopts $testargs
${command_wrapper} python $root/manage.py test --settings=$project.test.settings --verbosity 2 $testopts $testargs
}
function run_tests_all {
@ -344,7 +344,7 @@ function run_tests_all {
${command_wrapper} python -m coverage.__main__ erase
coverage_run="python -m coverage.__main__ run -p"
fi
${command_wrapper} ${coverage_run} $root/manage.py test manila_ui --settings=manila_ui.test.settings $testopts
${command_wrapper} ${coverage_run} $root/manage.py test manila_ui --settings=manila_ui.test.settings --verbosity 2 $testopts
# get results of the Horizon tests
MANILA_RESULT=$?