travis grouping bug

This commit is contained in:
Spencer Alger
2014-01-15 00:54:35 -07:00
parent a286d4e36f
commit 57ca30fbc8
2 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,7 @@
##### #####
function group { function group {
if [ -n "$TRAVIS" ]; then if [ -n "$TRAVIS" ]; then
echo -e "travis_fold:$1" echo -e "travis_fold:${1// /_}"
fi fi
} }

View File

@ -55,7 +55,9 @@ if [[ "$NODE_UNIT" != "0" ]]; then
fi fi
if [[ "$NODE_INTEGRATION" != "0" ]]; then if [[ "$NODE_INTEGRATION" != "0" ]]; then
group "start:generate_tests"
call node scripts/generate --no-api call node scripts/generate --no-api
group "end:generate_tests"
if [[ "$USER" != "jenkins" ]]; then if [[ "$USER" != "jenkins" ]]; then
manage_es start $TESTING_BRANCH $ES_RELEASE manage_es start $TESTING_BRANCH $ES_RELEASE