ScalaTest in sbt: is there a way to run a single test without tags?

This is now supported (since ScalaTest 2.1.3) within interactive mode:

testOnly *MySuite -- -z foo

to run only the tests whose name includes the substring “foo”.

For exact match rather than substring, use -t instead of -z.


If you run it from the command line, it should be as single argument to sbt:

sbt 'testOnly *MySuite -- -z foo'

Leave a Comment