Skip to content

Commit 71b52c9

Browse files
committed
Merge pull request #26 from xuwei-k/fix-travis
fix travis script. disable coverage task when Scala 2.10.4
2 parents f33ecad + beb30f2 commit 71b52c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ scala:
33
- 2.10.4
44
- 2.11.5
55
sudo: false
6-
script: sbt clean coverage test
7-
after_success: sbt coveralls
6+
script: sbt ++${TRAVIS_SCALA_VERSION} clean $(if [[ "${TRAVIS_SCALA_VERSION}" == "2.11.5" ]]; then echo coverage ; else echo "" ; fi) test
7+
after_success: sbt $(if [[ "${TRAVIS_SCALA_VERSION}" == "2.11.5" ]]; then echo coveralls ; else echo "" ; fi)
88
addons:
99
postgresql: '9.3'
1010
before_script:

0 commit comments

Comments
 (0)