Skip to content

Commit 56002e2

Browse files
committed
refactor: disabled parallelExecution in tests
1 parent 4a3e4dd commit 56002e2

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

build.sbt

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,17 @@ lazy val baseSettings = Seq(
5050
semanticdbVersion := scalafixSemanticdb.revision,
5151
Test / publishArtifact := false,
5252
Test / fork := true,
53-
testForkedParallel := true,
54-
concurrentRestrictions := {
55-
val par = parallelExecution.value
56-
val max = EvaluateTask.SystemProcessors
57-
List(
58-
Tags.limitAll(if (par) max else 1),
59-
Tags.limit(Tags.ForkedTestGroup, 2),
60-
Tags.exclusiveGroup(Tags.Clean)
61-
)
62-
}
53+
Test / parallelExecution := false
54+
// testForkedParallel := true,
55+
// concurrentRestrictions := {
56+
// val par = parallelExecution.value
57+
// val max = EvaluateTask.SystemProcessors
58+
// List(
59+
// Tags.limitAll(if (par) max else 1),
60+
// Tags.limit(Tags.ForkedTestGroup, 2),
61+
// Tags.exclusiveGroup(Tags.Clean)
62+
// )
63+
// }
6364
)
6465

6566
val `docker-controller-scala-core` = (project in file("docker-controller-scala-core"))

0 commit comments

Comments
 (0)