mirror of
https://github.com/lightbend/config.git
synced 2025-03-25 16:50:40 +08:00
Don't run tests in parallel
Since some of them test global state, such as the reference config cache. Fixes #9 which was just broken tests not a real bug.
This commit is contained in:
parent
a48edce4b4
commit
bce78c8ec0
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user