How to run tests in a class sequentially in ScalaTest?
问题 I have a class which extends org.scalatest.junit.JUnitSuite. This class has a couple of tests. I do not want these tests to run in parallel. I know how simple it is with Specs2 (extend the class with Specification and add a single line sequential inside the class) as shown here: How to run specifications sequentially. I do not want to alter the Build file by setting: parallelExecution in Test := false nor I want to use tags to run specific test files sequentially. All I want is a way to make