在sbt中为基于specs2的测试执行此操作的方法是
(testOptions in Test) += Tests.Argument(TestFrameworks.Specs2,"html")
解决方法
所以我需要做的两件事……
I.在2.0.M5b之后使用任何scalatest工件.对我来说,我添加了这种依赖,
org.scalatest“%%”scalatest“%”2.0.M6“%”test-> *“excludeAll(
ExclusionRule(organization =“org.junit”,name =“junit”)
)
“test-> *”是必要的,否则生成html所需的依赖关系不会被下载. (必须有比这更好的方法)
II.在build.sbt中,添加
(测试中的testOptions)= Tests.Argument(TestFrameworks.ScalaTest,“ – u”,“target / report”)