在sbt中,我可以使用testOptions in Test += Tests.Arguments("...")将参数传递给ScalaTest,就像here所描述的那样。
在调用scct:test时,有没有办法通过scct将这些选项传递给ScalaTest?我尝试了testOptions in Scct += ...,但似乎没有任何效果。
发布于 2012-11-16 23:01:05
scct看起来有两种配置:ScctTest和Scct。From the source,你可能想要testOptions in ScctTest
https://stackoverflow.com/questions/13408575
复制相似问题