From 2771c429695b46d6df520fa840fb5c35c1ca0cb6 Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Thu, 7 May 2026 02:59:46 +0000 Subject: [PATCH] (patch) Allow builds without full coverage for now. (#1) Reviewed-on: https://git.garrity.co/garrity-software/gs-std/pulls/1 --- build.sbt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index fed8107..36e5fc8 100644 --- a/build.sbt +++ b/build.sbt @@ -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 {