diff options
| author | Chris Rebert <[email protected]> | 2014-08-15 11:52:50 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-08-15 11:52:50 -0700 |
| commit | 31f7cb152efbc22ea61801915d81ba2b13435f97 (patch) | |
| tree | 412ab5722960bec3e8597730471cef0fb1a1755f | |
| parent | 8194668c52f9fd5f3974409f1871c3882f39f4c2 (diff) | |
| parent | 325defb63f0d73084717853caeece887f48826f0 (diff) | |
| download | bootstrap-31f7cb152efbc22ea61801915d81ba2b13435f97.tar.xz bootstrap-31f7cb152efbc22ea61801915d81ba2b13435f97.zip | |
Merge pull request #14402 from Joshua-Anderson/travis-time
Remove `time` from `.travis.yml`.
| -rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 8926f05d7..cba82c786 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: node_js node_js: - "0.10" before_install: - - time travis_retry sudo pip install -r test-infra/requirements.txt + - travis_retry sudo pip install -r test-infra/requirements.txt - rvm use 1.9.3 --fuzzy - export GEMDIR=$(rvm gemdir) - if [ "$TWBS_TEST" = validate-html ]; then echo "ruby=$(basename $GEMDIR) jekyll=$JEKYLL_VERSION rouge=$ROUGE_VERSION" > pseudo_Gemfile.lock; fi @@ -10,7 +10,7 @@ before_install: - echo "$TRAVIS_COMMIT_MSG" | grep '\[skip validator\]'; export TWBS_DO_VALIDATOR=$?; true - echo "$TRAVIS_COMMIT_MSG" | grep '\[skip sauce\]'; export TWBS_DO_SAUCE=$?; true install: - - time npm install -g grunt-cli + - npm install -g grunt-cli - ./test-infra/s3_cache.py download npm-modules - if [ "$TWBS_TEST" = validate-html ] && [ $TWBS_DO_VALIDATOR -ne 0 ]; then ./test-infra/s3_cache.py download rubygems; fi after_script: |
