Skip to content

Commit

Permalink
oss: Remove --error from travis commands
Browse files Browse the repository at this point in the history
Problem / Solution

When Scalatests fail, they log at info level which means we don't have
enough details in our logs to diagnose problems. See [1] for example.

[1] https://s3.amazonaws.com/archive.travis-ci.org/jobs/159412682/log.txt

RB_ID=871128
  • Loading branch information
kevinoliver authored and jenkins committed Sep 19, 2016
1 parent 7e52ba1 commit 96cdde7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ before_script:
- curl -s https://raw.githubusercontent.com/twitter/dodo/develop/bin/build | bash -s -- --no-test twitter-server
- travis_retry ./sbt --error ++$TRAVIS_SCALA_VERSION update

script:
- travis_retry ./sbt --error ++$TRAVIS_SCALA_VERSION clean coverage test coverageReport
script:
- travis_retry ./sbt ++$TRAVIS_SCALA_VERSION clean coverage test coverageReport
- ./sbt ++$TRAVIS_SCALA_VERSION coverageAggregate

after_success:
after_success:
- bash <(curl -s https://codecov.io/bash)

0 comments on commit 96cdde7

Please sign in to comment.