I have been using ScalaTest for a while and I find pretty useful the ability to Tag your tests and run just those with a specific Tag from the command line.
Is there any
Here is how to do it:
import org.specs2.mutable._ class MySpec extends Specification { tag("fast") "example1" >> ok tag("slow") "example2" >> ok }
Then in sbt
sbt> test-only *MySpec* -- include fast
You will find more information here.