Skip to content

Commit

Permalink
Disabling parallel tests fixes #11 (but isn't really satisfying)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
manuelkiessling committed Dec 30, 2015
1 parent e3cd599 commit b451904
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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) =>
Expand Down

0 comments on commit b451904

Please sign in to comment.