Skip to content

Commit

Permalink
Disable parallell test execution
Browse files Browse the repository at this point in the history
Test suites like `TimeoutSuite` are timing dependent making them more
flaky on slower computers.
  • Loading branch information
olafurpg committed Oct 11, 2021
1 parent 19e052c commit d277a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ lazy val tests = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.jvmSettings(
sharedJVMSettings,
fork := true,
Test / parallelExecution := true,
Test / parallelExecution := false,
Test / testOptions += Tests.Argument(TestFrameworks.MUnit, "+b")
)
.disablePlugins(MimaPlugin)
Expand Down

0 comments on commit d277a57

Please sign in to comment.