From 626a132729388680df19384cc5cadc29329894bc Mon Sep 17 00:00:00 2001 From: Amarjeet LNU Date: Mon, 20 Jul 2026 13:12:19 -0700 Subject: [PATCH 1/2] test: verify Codecov after --cov=sagemaker CR deploy (DO NOT MERGE) No-op comment in all 4 submodule __init__.py files so every unit-test job runs and uploads coverage. Purpose: confirm whether the just-deployed buildspec CR (--cov=. -> --cov=sagemaker) now produces product-only coverage (~71%, test files excluded) instead of the old test-inflated ~90%. Same-repo branch, cut from current master. Verification only. --- sagemaker-core/src/sagemaker/core/__init__.py | 1 + sagemaker-mlops/src/sagemaker/mlops/__init__.py | 1 + sagemaker-serve/src/sagemaker/serve/__init__.py | 1 + sagemaker-train/src/sagemaker/train/__init__.py | 1 + 4 files changed, 4 insertions(+) diff --git a/sagemaker-core/src/sagemaker/core/__init__.py b/sagemaker-core/src/sagemaker/core/__init__.py index 0bd0637152..b480ddb3ac 100644 --- a/sagemaker-core/src/sagemaker/core/__init__.py +++ b/sagemaker-core/src/sagemaker/core/__init__.py @@ -30,3 +30,4 @@ # Note: HyperparameterTuner and WarmStartTypes are in sagemaker.train.tuner # They are not re-exported from core to avoid circular dependencies +# No-op line to trigger CI for a Codecov verification (DO NOT MERGE). diff --git a/sagemaker-mlops/src/sagemaker/mlops/__init__.py b/sagemaker-mlops/src/sagemaker/mlops/__init__.py index 18527db318..29374e108b 100644 --- a/sagemaker-mlops/src/sagemaker/mlops/__init__.py +++ b/sagemaker-mlops/src/sagemaker/mlops/__init__.py @@ -31,3 +31,4 @@ "ModelBuilder", "workflow", # Submodule ] +# No-op line to trigger CI for a Codecov verification (DO NOT MERGE). diff --git a/sagemaker-serve/src/sagemaker/serve/__init__.py b/sagemaker-serve/src/sagemaker/serve/__init__.py index 9cf115d1ab..96ff18eef9 100644 --- a/sagemaker-serve/src/sagemaker/serve/__init__.py +++ b/sagemaker-serve/src/sagemaker/serve/__init__.py @@ -57,3 +57,4 @@ "WorkloadValidationError", "start_benchmark", ] +# No-op line to trigger CI for a Codecov verification (DO NOT MERGE). diff --git a/sagemaker-train/src/sagemaker/train/__init__.py b/sagemaker-train/src/sagemaker/train/__init__.py index ea58d2027d..8626fb4af5 100644 --- a/sagemaker-train/src/sagemaker/train/__init__.py +++ b/sagemaker-train/src/sagemaker/train/__init__.py @@ -120,3 +120,4 @@ def __getattr__(name): from sagemaker.core.training.configs import HyperPodCompute return HyperPodCompute raise AttributeError(f"module '{__name__}' has no attribute '{name}'") +# No-op line to trigger CI for a Codecov verification (DO NOT MERGE). From 6b41b3f0e5edc32ee2b0263f91f7367fa7f33f0e Mon Sep 17 00:00:00 2001 From: Amarjeet LNU Date: Wed, 22 Jul 2026 13:41:23 -0700 Subject: [PATCH 2/2] test: re-trigger CI to pick up deployed --cov=sagemaker buildspec (DO NOT MERGE) The prior build on this branch ran before the buildspec CR (--cov=. -> --cov=sagemaker) deployed. Empty commit to force a fresh build so coverage.xml reflects product-only code. Verification only.