@@ -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
163164lazy val tzdb = crossProject(JVMPlatform , JSPlatform , NativePlatform )
@@ -178,12 +179,13 @@ lazy val tzdb = crossProject(JVMPlatform, JSPlatform, NativePlatform)
178179 }.taskValue
179180 )
180181 .nativeSettings(
181- tzdbPlatform := TzdbPlugin .Platform .Native ,
182+ tzdbPlatform := TzdbPlugin .Platform .Native ,
182183 Compile / sourceGenerators += Def .task {
183184 val srcDirs = (Compile / sourceManaged).value
184185 val destinationDir = (Compile / sourceManaged).value
185186 copyAndReplace(Seq (srcDirs), destinationDir)
186- }.taskValue
187+ }.taskValue,
188+ Test / loadedTestFrameworks := Map .empty // workaround
187189 )
188190 .jvmSettings(
189191 tzdbPlatform := TzdbPlugin .Platform .Jvm
@@ -252,5 +254,6 @@ lazy val demo = crossProject(JSPlatform, JVMPlatform, NativePlatform)
252254 tzdbPlatform := TzdbPlugin .Platform .Jvm
253255 )
254256 .nativeSettings(
255- tzdbPlatform := TzdbPlugin .Platform .Native
257+ tzdbPlatform := TzdbPlugin .Platform .Native ,
258+ Test / loadedTestFrameworks := Map .empty // workaround
256259 )
0 commit comments