(patch) Allow builds without full coverage for now.
All checks were successful
/ Build and Test Library Snapshot (pull_request) Successful in 2m20s

This commit is contained in:
Pat Garrity 2026-05-06 21:56:45 -05:00
parent 1f43c9815e
commit cf4c203548
Signed by: pfm
GPG key ID: 5CA5D21BAB7F3A76

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 {