so i need to do two things ...
I. use any scalar artifact after 2.0.M5b. For me, I added this dependency,
org.scalatest" %% "scalatest" % "2.0.M6" % "test->*" excludeAll ( ExclusionRule(organization="org.junit", name="junit") )
"test → *" is necessary, otherwise the dependencies needed to generate html will not be loaded. (There must be a better way than this)
II. In build.sbt add
(testOptions in Test) += Tests.Argument(TestFrameworks.ScalaTest, "-u", "target/report")
Sheng
source share