(patch) Allow builds without full coverage for now. (#1)
All checks were successful
/ Build and Release Library (push) Successful in 2m18s

Reviewed-on: #1
This commit is contained in:
Pat Garrity 2026-05-07 02:59:46 +00:00
parent 1f43c9815e
commit 2771c42969

View file

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