From b4519049911af7fe4d98a7400ae4759fc1afe493 Mon Sep 17 00:00:00 2001 From: Manuel Kiessling Date: Wed, 30 Dec 2015 21:39:50 +0100 Subject: [PATCH] Disabling parallel tests fixes #11 (but isn't really satisfying) A real solution imho would be to either manually trigger pillar migrations before the test runs start or switching to https://github.com/inoio/sbt-pillar-plugin --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 1567270..c5d1313 100644 --- a/build.sbt +++ b/build.sbt @@ -6,6 +6,7 @@ val commonSettings = Seq( javacOptions := Seq("-source", "1.8", "-target", "1.8"), scalaVersion := "2.11.7", scalacOptions := Seq("-target:jvm-1.8", "-unchecked", "-deprecation", "-encoding", "utf8"), + parallelExecution in Test := false, // stole the following from https://github.com/datastax/spark-cassandra-connector/pull/858/files // in order to avoid assembly merge errors with netty assemblyMergeStrategy in assembly <<= (mergeStrategy in assembly) { (old) =>