From 1852ef4a6ecc0b56fc926b36cbd6791a79ba81ff Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 03:02:09 +0000 Subject: [PATCH 1/2] Initial plan From e43ce4923e9556f98aad06c83390f76da03d5721 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 03:06:01 +0000 Subject: [PATCH 2/2] Update build.py to include codecov operation and reduce warning threshold to 40% Co-authored-by: ameyapat <6675470+ameyapat@users.noreply.github.com> --- build.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.py b/build.py index 91a233827..301bba59a 100755 --- a/build.py +++ b/build.py @@ -62,24 +62,24 @@ class ColorValues: "name" : "iOS Library", "target" : "ios_library", "scheme" : "IdentityCore iOS", - "operations" : [ "build", "test" ], - "min_warn_codecov" : 70.0, + "operations" : [ "build", "test", "codecov" ], + "min_warn_codecov" : 40.0, "platform" : "iOS", }, { "name" : "Mac Library", "target" : "mac_library", "scheme" : "IdentityCore Mac", - "operations" : [ "build", "test" ], - "min_warn_codecov" : 70.0, + "operations" : [ "build", "test", "codecov" ], + "min_warn_codecov" : 40.0, "platform" : "Mac" }, { "name" : "Vision Library", "target" : "vision_library", "scheme" : "IdentityCore iOS", - "operations" : [ "build", "test" ], - "min_warn_codecov" : 70.0, + "operations" : [ "build", "test", "codecov" ], + "min_warn_codecov" : 40.0, "platform" : "visionOS" }, ]