We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0afa3b commit 84a7704Copy full SHA for 84a7704
.travis.yml
@@ -1,3 +1,9 @@
1
language: scala
2
scala:
3
- 2.10.2
4
+
5
+script:
6
+ - sbt clean coverage test && sbt coverageAggregate
7
8
+after_success:
9
+ - sbt coveralls
build.sbt
@@ -39,3 +39,13 @@ autoCompilerPlugins := true
39
addCompilerPlugin("org.scala-lang.virtualized.plugins" % "continuations" % virtScala)
40
41
scalacOptions += "-P:continuations:enable"
42
43
+// code coverage
44
45
+resolvers += Classpaths.sbtPluginReleases
46
47
+addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.0.1")
48
49
+addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.0.0.BETA1")
50
51
+scoverage.ScoverageSbtPlugin.ScoverageKeys.coverageHighlighting := false
0 commit comments