We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5368e64 commit 314f596Copy full SHA for 314f596
build.sbt
@@ -237,8 +237,8 @@ lazy val commonNativeSettings = Seq(
237
// https://github.com/tkawachi/sbt-doctest/issues/52
238
doctestGenTests := Seq.empty,
239
coverageEnabled := false,
240
- // Currently scala-native does not support Dotty
241
- crossScalaVersions := { crossScalaVersions.value.filterNot(Seq(DottyOld, DottyNew).contains) }
+ // Currently scala-native does not support Dotty, scoverage does not support Scala 2.12.13
+ crossScalaVersions := { crossScalaVersions.value.filterNot(Seq(DottyOld, DottyNew, Scala212).contains) }
242
)
243
244
lazy val commonJvmSettings = Seq(
0 commit comments