From 5309362df28ff7823bff7acfe0962e27396ac7f0 Mon Sep 17 00:00:00 2001 From: Anubhav Dhawan Date: Tue, 31 Mar 2026 17:02:19 +0530 Subject: [PATCH] fix(tests/spanner): Fix swallowing of spanner integration test failures This PR fixes an issue with the CI/CD setup which caused failures from spanner integration tests to be swallowed, meaning the errors were just logged and the test ran green. This PR fixes that by updating the command needed to run the spanner test. --- .ci/integration.cloudbuild.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/integration.cloudbuild.yaml b/.ci/integration.cloudbuild.yaml index 2258abb6ddb..4efb00cab22 100644 --- a/.ci/integration.cloudbuild.yaml +++ b/.ci/integration.cloudbuild.yaml @@ -593,7 +593,7 @@ steps: .ci/test_with_coverage.sh \ "Spanner" \ spanner \ - spanner || echo "Integration tests failed." + spanner || { echo "Integration tests failed."; exit 1; } else echo "No relevant changes for Spanner. Skipping shard." exit 0