From 330958fcdbe6f339f040f55bb28af6b1b589bf28 Mon Sep 17 00:00:00 2001 From: Landon James Date: Wed, 26 Mar 2025 12:30:16 -0700 Subject: [PATCH] Ignore region provider spans test It was behaving differently in GitHub CI vs CodeBuild CI --- aws/sdk/integration-tests/telemetry/tests/spans.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/aws/sdk/integration-tests/telemetry/tests/spans.rs b/aws/sdk/integration-tests/telemetry/tests/spans.rs index eac6c17ac..d4ddc39c9 100644 --- a/aws/sdk/integration-tests/telemetry/tests/spans.rs +++ b/aws/sdk/integration-tests/telemetry/tests/spans.rs @@ -224,7 +224,11 @@ async fn config_spans_emitted() { build_profile_token_provider.assert(); } +// NOTE: this test is being temporarily ignored since, although it succeeds both locally and in the +// GitHub CI, it fails in our CodeBuild CI, likely because CodeBuild runs on EC2 so IMDS is present +// and causes different behavior. #[tokio::test] +#[ignore] async fn region_spans_emitted() { let assertion_registry = AssertionRegistry::default(); let base_subscriber = tracing_subscriber::Registry::default(); -- GitLab