How can I ensure scalatest tests do not run in parallel? Prior to 0.12 I had an sbt setting:
parallelExecution in Test := false
Newer versions introduced some complex mechanism. Will this simpler, old way still work with 0.13?
I don't want anything to run in parallel during tests.