File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -548,6 +548,7 @@ lazy val tests = crossProject(JSPlatform, JVMPlatform)
548548 .settings(noPublishSettings)
549549 .jsSettings(commonJsSettings)
550550 .jvmSettings(commonJvmSettings)
551+ .settings(scalacOptions in Test := (scalacOptions in Test ).value.filter(_ != " -Xfatal-warnings" ))
551552
552553lazy val testkit = crossProject(JSPlatform , JVMPlatform )
553554 .crossType(CrossType .Pure )
@@ -560,6 +561,7 @@ lazy val testkit = crossProject(JSPlatform, JVMPlatform)
560561 .settings(libraryDependencies += " org.scalatest" %%% " scalatest" % scalatestVersion)
561562 .jsSettings(commonJsSettings)
562563 .jvmSettings(commonJvmSettings)
564+ .settings(scalacOptions := scalacOptions.value.filter(_ != " -Xfatal-warnings" ))
563565
564566lazy val alleycatsCore = crossProject(JSPlatform , JVMPlatform )
565567 .crossType(CrossType .Pure )
@@ -601,6 +603,7 @@ lazy val alleycatsTests = crossProject(JSPlatform, JVMPlatform)
601603 .settings(noPublishSettings)
602604 .jsSettings(commonJsSettings)
603605 .jvmSettings(commonJvmSettings)
606+ .settings(scalacOptions in Test := (scalacOptions in Test ).value.filter(_ != " -Xfatal-warnings" ))
604607
605608// bench is currently JVM-only
606609
You can’t perform that action at this time.
0 commit comments