Right exit code when running only selected tests

Many "echos" were hiding exit code returned by tox

Change-Id: I0e7ed985f61d19cd528544116f5d6bf8048b3c77
Closes-Bug: #1439057
This commit is contained in:
Sebastian Kalinowski 2015-09-21 16:13:05 +02:00 committed by Sebastian Kalinowski
parent b64e50effd
commit 7e8b35076f
1 changed files with 5 additions and 4 deletions

View File

@ -610,14 +610,15 @@ EOL
#
# $1 -- path to the test file
function guess_test_run {
if [[ $1 == *functional* && $1 == *.js ]]; then
run_ui_func_tests $1 || echo "ERROR: $1"
run_ui_func_tests $1
elif [[ $1 == *fuel_upgrade_system* ]]; then
run_upgrade_system_tests $1 || echo "ERROR: $1"
run_upgrade_system_tests $1
elif [[ $1 == *shotgun* ]]; then
run_shotgun_tests $1 || echo "ERROR: $1"
run_shotgun_tests $1
else
run_nailgun_tests $1 || echo "ERROR: $1"
run_nailgun_tests $1
fi
}