Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ensuring ScalaTest does not run in parallel

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.

like image 759
Greg Avatar asked Nov 10 '22 15:11

Greg


1 Answers

That's an sbt question, and though I'm not sure what complex mechanism you are referring to, I know of no change to sbt that would cause that line to not work. Do you think you are seeing parallel execution in 0.13 with that line of code in your build?

like image 78
Bill Venners Avatar answered Nov 15 '22 06:11

Bill Venners