在sbt 0.10.1中,我经常test-only用来缩小测试次数.
test-only
sbt> test-only com.example.MySpec
但是,我想缩小范围,以便我只运行名称/描述与正则表达式匹配的测试.有没有一些语法来实现这样的东西?
sbt> test-only .*someRexExp.*
scala sbt
sbt ×1
scala ×1