diff --git a/.travis.yml b/.travis.yml index c501c69043..0c992faae3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,9 @@ branches: - feature/crypto - feature/rlpRefactor - phase/2/txHashValidation + - feature/messageVersioning + - feature/coverage script: - - sbt test - + - sbt clean coverage test +after_success: + - sbt coverageReport coveralls diff --git a/project/plugins.sbt b/project/plugins.sbt index d89b08d0d4..e8932e2918 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,2 +1,3 @@ logLevel := Level.Warn -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.0") \ No newline at end of file +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.0") +addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.1.0")