Skip to content

Commit

Permalink
Bump sbt-scoverage to version 1.6.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
ruippeixotog committed Apr 30, 2019
1 parent 468bce1 commit cf8848e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
17 changes: 11 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,23 @@ env:
- JOB=test

script:
# Coverage temporarily disabled due to lack of support for Scala 2.13.0-RC1 (https://github.com/scoverage/sbt-scoverage/issues/282)
- sbt "++$TRAVIS_SCALA_VERSION test" "++$TRAVIS_SCALA_VERSION tut" "++$TRAVIS_SCALA_VERSION doc" "++$TRAVIS_SCALA_VERSION publishLocal"
- (cd example ; sbt ++$TRAVIS_SCALA_VERSION test)
- >
sbt coverage
"++$TRAVIS_SCALA_VERSION test"
"++$TRAVIS_SCALA_VERSION tut"
"++$TRAVIS_SCALA_VERSION doc"
"++$TRAVIS_SCALA_VERSION publishLocal"
# Compile example project
- (cd example; sbt ++$TRAVIS_SCALA_VERSION test)

# check if there are no changes after `tut` runs
- if [[ $TRAVIS_SCALA_VERSION =~ ^2\.12.* ]]; then
git diff --exit-code;
fi

# Coverage temporarily disabled due to lack of support for Scala 2.13.0-RC1 (https://github.com/scoverage/sbt-scoverage/issues/282)
#after_success:
# - sbt ++$TRAVIS_SCALA_VERSION "++$TRAVIS_SCALA_VERSION coverageReport" coverageAggregate coveralls
after_success:
- sbt ++$TRAVIS_SCALA_VERSION "++$TRAVIS_SCALA_VERSION coverageReport" coverageAggregate coveralls

jobs:
include:
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.4")
addSbtPlugin("io.spray" % "sbt-boilerplate" % "0.6.1")
addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.8.2")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.2.7")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0-RC1")
addSbtPlugin("org.tpolecat" % "tut-plugin" % "0.6.11")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.4")

Expand Down

0 comments on commit cf8848e

Please sign in to comment.