Skip to content

Commit c84a7b3

Browse files
committed
Run tests in parallel by default
1 parent fc261a0 commit c84a7b3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.sbt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ ThisBuild / initialCommands := """
2424
|import upperbound._
2525
""".stripMargin
2626

27-
ThisBuild / testFrameworks += new TestFramework("munit.Framework")
28-
ThisBuild / Test / parallelExecution := false
27+
// If debugging tests, it's sometimes useful to disable parallel execution and test result buffering:
28+
// ThisBuild / Test / parallelExecution := false
29+
// ThisBuild / Test / testOptions += Tests.Argument(TestFrameworks.MUnit, "-b")
30+
2931

3032
def dep(org: String, prefix: String, version: String)(
3133
modules: String*

0 commit comments

Comments
 (0)