When tests are run with sbt test command, tests of different modules are run in parallel and this creates problem because tests are accessing to database and when they are run parallel, sometimes they are removing or overwriting their data. Therefore, they need to be run seperately.
When tests are run with
sbt test
command, tests of different modules are run in parallel and this creates problem because tests are accessing to database and when they are run parallel, sometimes they are removing or overwriting their data. Therefore, they need to be run seperately.