(patch) Allow builds without full coverage for now. #1

Merged
pfm merged 1 commit from allow-partial-coverage into main 2026-05-07 02:59:46 +00:00

View file

@ -15,11 +15,11 @@ val noPublishSettings = Seq(
) )
val sharedSettings = Seq( val sharedSettings = Seq(
scalaVersion := scala3, scalaVersion := scala3,
version := semVerSelected.value, version := semVerSelected.value,
coverageFailOnMinimum := true, coverageFailOnMinimum := true
coverageMinimumStmtTotal := 100, // coverageMinimumStmtTotal := 100,
coverageMinimumBranchTotal := 100 // coverageMinimumBranchTotal := 100
) )
val Deps = new { val Deps = new {