Skip to content

Commit 9375399

Browse files
committed
Remove coverage; not supported on scala3
See scoverage/scalac-scoverage-plugin#299
1 parent 9f95a30 commit 9375399

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

build.sbt

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,17 @@ val allScalaVersions = scala2Versions :+ scala3Version
1010
ThisBuild / scalaVersion := scala213
1111
ThisBuild / crossScalaVersions := allScalaVersions
1212

13-
addCommandAlias("ci-test", "scalafmtCheckAll; scalafmtSbtCheck; mdoc; testCovered")
13+
addCommandAlias("ci-test", "scalafmtCheckAll; scalafmtSbtCheck; mdoc; ++test")
1414
addCommandAlias("ci-docs", "github; mdoc; headerCreateAll; publishMicrosite")
1515
addCommandAlias("ci-publish", "github; ci-release")
1616

17-
coverageScalacPluginVersion := "1.4.8" // needed for scala 2.12.14
18-
1917
publish / skip := true
2018

2119
lazy val github4s = project
2220
.settings(coreDeps: _*)
2321
.settings(
2422
// Increase number of inlines, needed for circe semiauto derivation
25-
scalacOptions ++= on(3, 9)(Seq("-Xmax-inlines", "20")).value.flatten,
26-
coverageScalacPluginVersion := "1.4.8" // needed for scala 2.12.14
23+
scalacOptions ++= on(3, 9)(Seq("-Xmax-inlines", "20")).value.flatten
2724
)
2825

2926
//////////
@@ -37,14 +34,8 @@ lazy val microsite: Project = project
3734
.settings(micrositeSettings: _*)
3835
.settings(publish / skip := true)
3936
.settings(ScalaUnidoc / unidoc / unidocProjectFilter := inProjects(github4s, microsite))
40-
.settings(
41-
coverageScalacPluginVersion := "1.4.8" // needed for scala 2.12.14
42-
)
4337

4438
lazy val documentation = project
4539
.enablePlugins(MdocPlugin)
4640
.settings(mdocOut := file("."))
4741
.settings(publish / skip := true)
48-
.settings(
49-
coverageScalacPluginVersion := "1.4.8" // needed for scala 2.12.14
50-
)

0 commit comments

Comments
 (0)