Skip to content

Commit

Permalink
not sure, but parallelExecution false
Browse files Browse the repository at this point in the history
  • Loading branch information
patriknw committed Oct 16, 2023
1 parent 1adb40e commit 57ccbb6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ lazy val interopTests = Project(id = "akka-grpc-interop-tests", base = file("int
.pluginTestingSettings
.settings(
// All io.grpc servers want to bind to port :8080
parallelExecution := false,
Test / parallelExecution := false,
ReflectiveCodeGen.generatedLanguages := Seq("Scala", "Java"),
ReflectiveCodeGen.extraGenerators := Seq("ScalaMarshallersCodeGenerator"),
ReflectiveCodeGen.codeGeneratorSettings ++= Seq("server_power_apis"),
Expand Down Expand Up @@ -228,6 +228,7 @@ lazy val pluginTesterScala = Project(id = "akka-grpc-plugin-tester-scala", base
fork := true,
crossScalaVersions := Dependencies.Versions.CrossScalaForLib,
scalaVersion := Dependencies.Versions.CrossScalaForLib.head,
Test / parallelExecution := false,
ReflectiveCodeGen.codeGeneratorSettings ++= Seq("flat_package", "server_power_apis"))
.pluginTestingSettings

Expand All @@ -241,6 +242,7 @@ lazy val pluginTesterJava = Project(id = "akka-grpc-plugin-tester-java", base =
ReflectiveCodeGen.generatedLanguages := Seq("Java"),
crossScalaVersions := Dependencies.Versions.CrossScalaForLib,
scalaVersion := Dependencies.Versions.CrossScalaForLib.head,
Test / parallelExecution := false,
ReflectiveCodeGen.codeGeneratorSettings ++= Seq("server_power_apis"))
.pluginTestingSettings

Expand Down

0 comments on commit 57ccbb6

Please sign in to comment.