Skip to content

Commit a4f6954

Browse files
committed
override loadedTestFrameworks
1 parent 0aeee30 commit a4f6954

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

build.sbt

Lines changed: 7 additions & 4 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)
@@ -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

Comments
 (0)