Run ScalaTest tests (not suites) in parallel in SBT

I would like to run all tests of a single package in parallel. Obviously, I can do this by shifting ParallelTestExecutionto my package, but the tests continue to run in order. I suspect this is because it is Distributornot transmitted runTests. Looking at the mailing list for roll users, it seems like this is a known issue that will be fixed in sbt 0.13 and the related ScalaTest version .

Is it correct?

+5
source share

All Articles