File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -283,6 +283,8 @@ trait Chisel extends CrossSbtModule with HasScala2MacroAnno with HasScala2Plugin
283283 // Suppress Scala 3 behavior requiring explicit types on implicit definitions
284284 // Note this must come before the -Wconf is warningSuppression
285285 override def scalacOptions = Task { super.scalacOptions() :+ "-Wconf:cat=other-implicit-type:s" }
286+
287+ override def testForkGrouping = discoveredTestClasses().grouped(8).toSeq
286288 }
287289}
288290
Original file line number Diff line number Diff line change @@ -22,5 +22,7 @@ trait IntegrationTests extends CrossSbtModule with HasScala2Plugin with HasCommo
2222 object test extends SbtTests with TestModule.ScalaTest with ScalafmtModule {
2323 override def moduleDeps = super.moduleDeps :+ chisel().test
2424 def ivyDeps = Agg(v.scalatest, v.scalacheck)
25+
26+ override def testForkGrouping = discoveredTestClasses().grouped(8).toSeq
2527 }
2628}
You can’t perform that action at this time.
0 commit comments