typesafehub / conductr-lib

Other
8 stars 13 forks source link

Run projects sequentially during tests #97

Closed markusjura closed 8 years ago

markusjura commented 8 years ago

By default sbt test is running all projects in parallel. This leads to problems because the conductr-client-lib projects needs to run sequentially.

This commits adds a falg in the global build.sbt to run the projects sequentially during testing. An alternative would be to use sbt project1/test:test project2/test:test ... instead of sbt test. However, sbt release is using the command sbt test on the root level before releasing a new version. So the latter wouldn't work when releasing new conductr-lib versions. Hence the fix.