diff --git a/src/common/travis/before.sh b/src/common/travis/before.sh index f9d25d18317..071b32669d4 100755 --- a/src/common/travis/before.sh +++ b/src/common/travis/before.sh @@ -16,7 +16,7 @@ if [ -n "$TRAVIS" ]; then npm -g install yogi -loglevel silent cd ../ echo "building entire library"; - shifter --walk --no-lint --istanbul + shifter --walk --no-lint --cache cd yui; else make npm diff --git a/src/common/travis/test.sh b/src/common/travis/test.sh index a2c4a0182c1..0690f356500 100755 --- a/src/common/travis/test.sh +++ b/src/common/travis/test.sh @@ -20,17 +20,18 @@ con="" timeout="" cli="" extra="" + if [ -n "$TRAVIS" ]; then - con="-c 5 " - timeout="-t 400 " + con="-c 8 " + timeout="-t 500 " if [ "${TRAVIS_NODE_VERSION}" = "0.8" ]; then - extra="-x editor -x yui-throttle -x scrollview --filter min" + extra="-x editor -x yui-throttle" else echo "Skipping Grover tests for this Node version (not needed)" extra="--cli " fi fi -args="--coverage --istanbul ${timeout} ${con} ${extra}" +args="${timeout} ${con} ${extra}" echo "yogi test ${args}" ${yogi} test ${args}