Skip to content

Commit 740d895

Browse files
committed
Actually keep the workarounds
1 parent 4999aed commit 740d895

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
@@ -157,7 +157,8 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
157157
}.taskValue,
158158
libraryDependencies ++= Seq(
159159
"io.github.cquiroz" %%% "scala-java-locales" % scalajavaLocalesVersion
160-
)
160+
),
161+
Test / loadedTestFrameworks := Map.empty // workaround
161162
)
162163

163164
lazy val tzdb = crossProject(JVMPlatform, JSPlatform, NativePlatform)
@@ -253,5 +254,6 @@ lazy val demo = crossProject(JSPlatform, JVMPlatform, NativePlatform)
253254
tzdbPlatform := TzdbPlugin.Platform.Jvm
254255
)
255256
.nativeSettings(
256-
tzdbPlatform := TzdbPlugin.Platform.Native
257+
tzdbPlatform := TzdbPlugin.Platform.Native,
258+
Test / loadedTestFrameworks := Map.empty // workaround
257259
)

0 commit comments

Comments
 (0)