parallel scalatest execution

running scalatest tests with sbt the default is a parallel execution.

in IDEA, every test will be launched one by one, without parallelism.

There is a way to runs tests in parallel?

thanks

3
1 comment
Avatar
Permanently deleted user

Mixing org.scalatest.ParallelTestExecution into the test class, the second test fails with this error:

Exception encountered when invoking run on a nested suite - Failed to bind to: /127.0.0.1:2552
org.jboss.netty.channel.ChannelException: Failed to bind to: /127.0.0.1:2552

Caused by: java.net.BindException: Address already in use
0

Please sign in to leave a comment.