From 0f657c08605952311579c7e9c9ed31b4a6b7ec92 Mon Sep 17 00:00:00 2001 From: Luben Karavelov Date: Wed, 19 Jun 2024 00:28:26 +0100 Subject: [PATCH] Don't fork when running tests This breaks the macos and windows builds in the CI --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 77c7c77..a5283aa 100644 --- a/build.sbt +++ b/build.sbt @@ -33,7 +33,7 @@ javacOptions ++= Seq("--release", "8", "-Xlint:unchecked") doc / javacOptions := Seq("--release", "8") -fork := true +// fork := true // Check at runtime for JNI errors when running tests Test / javaOptions ++= Seq("-Xcheck:jni")