Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ci/cloudbuild/builds/integration-production.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ io::run bazel test "${args[@]}" --test_tag_filters=-integration-test "${BAZEL_TA
excluded_rules=(
"-//examples:grpc_credential_types"
"-//google/cloud/bigtable/examples:bigtable_grpc_credentials"
# Observability integration tests are run separately by observability.sh
"-//google/cloud/bigtable/tests:observability_integration_test-default"
"-//google/cloud/bigtable/tests:observability_integration_test-dynamic-pool"
# This sample uses HMAC keys, which are very limited in production (at most
# 5 per service account). Disabled for now.
"-//google/cloud/storage/examples:storage_service_account_samples"
Expand Down
2 changes: 2 additions & 0 deletions ci/cloudbuild/builds/observability.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,12 @@ chmod +x /tmp/observability_integration_test-dynamic-pool
TEST_EXIT_CODE=0

echo "Running observability_integration_test-default..."
GOOGLE_CLOUD_CPP_BIGTABLE_TESTING_CHANNEL_POOL=static \
/tmp/observability_integration_test-default \
--gtest_output=xml:/tmp/test-default.xml > /tmp/test-default.log 2>&1 || TEST_EXIT_CODE=\$?

echo "Running observability_integration_test-dynamic-pool..."
GOOGLE_CLOUD_CPP_BIGTABLE_TESTING_CHANNEL_POOL=dynamic \
/tmp/observability_integration_test-dynamic-pool \
--gtest_output=xml:/tmp/test-dynamic-pool.xml > /tmp/test-dynamic-pool.log 2>&1 || TEST_EXIT_CODE=\$?

Expand Down
Loading
Loading