~jan0sch/smederee

Showing details for patch 9c16f2655ff1c1151c7709d91380703527e065fc.
2022-12-31 (Sat), 3:47 PM - Jens Grassel - 9c16f2655ff1c1151c7709d91380703527e065fc

Adjust settings for test framework.

- disable parallel test execution as recommended by munit documentation
Summary of changes
1 files modified with 3 lines added and 1 lines removed
  • build.sbt with 3 added and 1 removed lines
diff -rN -u old-smederee/build.sbt new-smederee/build.sbt
--- old-smederee/build.sbt	2025-03-05 06:36:00.106782095 +0000
+++ new-smederee/build.sbt	2025-03-05 06:36:00.106782095 +0000
@@ -30,7 +30,9 @@
     resolvers += "jitpack" at "https://jitpack.io", // for JANSI fork
     Compile / console / scalacOptions --= Seq("-Xfatal-warnings"),
     Test / console / scalacOptions --= Seq("-Xfatal-warnings"),
-    Test / fork := true
+    Test / fork := true,
+    Test / parallelExecution := false,
+    Test / testOptions += Tests.Argument(TestFrameworks.MUnit, "-b")
   )
 )