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 748c49d commit eee077cCopy full SHA for eee077c
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