Merge pull request #128 from typesafehub/wip/havocp-no-parallel-tests

Don't run tests in parallel
This commit is contained in:
Havoc Pennington 2014-01-03 12:14:56 -08:00
commit ece29bf3fb

View File

@ -35,3 +35,7 @@ seq(jacoco.settings : _*)
javacOptions in (Compile,doc) ++= Seq("-exclude", "com.typesafe.config.impl")
javacOptions in (Compile,compile) ++= Seq("-source", "1.6", "-target", "1.6", "-g")
// because we test some global state such as singleton caches,
// we have to run tests in serial.
parallelExecution in Test := false