-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
r/aws_bedrockagent_agent(test): fix test configuration #37352
Conversation
Fixes a broken IAM role reference in the base configuration shared by all acceptance tests. ```console % make testacc PKG=bedrockagent TESTS=TestAccBedrockAgentAgent_ ==> Checking that code complies with gofmt requirements... TF_ACC=1 go1.22.2 test ./internal/service/bedrockagent/... -v -count 1 -parallel 20 -run='TestAccBedrockAgentAgent_' -timeout 360m --- PASS: TestAccBedrockAgentAgent_full (19.72s) --- PASS: TestAccBedrockAgentAgent_basic (23.29s) --- PASS: TestAccBedrockAgentAgent_tags (35.97s) --- PASS: TestAccBedrockAgentAgent_update (39.29s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/bedrockagent 44.344s ```
Community NoteVoting for Prioritization
For Submitters
|
While adding a stutter, the acceptance test name now more accurately aligns with the name of the corresponding resource. ```console % make testacc PKG=bedrockagent TESTS=TestAccBedrockAgentAgentAlias_ ==> Checking that code complies with gofmt requirements... TF_ACC=1 go1.22.2 test ./internal/service/bedrockagent/... -v -count 1 -parallel 20 -run='TestAccBedrockAgentAgentAlias_' -timeout 360m --- PASS: TestAccBedrockAgentAgentAlias_disappears (26.80s) --- PASS: TestAccBedrockAgentAgentAlias_basic (31.81s) --- PASS: TestAccBedrockAgentAgentAlias_update (37.83s) --- PASS: TestAccBedrockAgentAgentAlias_routingUpdate (45.00s) --- PASS: TestAccBedrockAgentAgentAlias_tags (49.06s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/bedrockagent 54.096s ```
While adding a stutter, the acceptance test name now more accurately aligns with the name of the corresponding resource. ```console % make testacc PKG=bedrockagent TESTS=TestAccBedrockAgentAgentActionGroup_ ==> Checking that code complies with gofmt requirements... TF_ACC=1 go1.22.2 test ./internal/service/bedrockagent/... -v -count 1 -parallel 20 -run='TestAccBedrockAgentAgentActionGroup_' -timeout 360m --- PASS: TestAccBedrockAgentAgentActionGroup_s3APISchema (30.45s) --- PASS: TestAccBedrockAgentAgentActionGroup_basic (41.60s) --- PASS: TestAccBedrockAgentAgentActionGroup_update (48.90s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/bedrockagent 53.900s ```
This functionality has been released in v5.49.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
Fixes a broken IAM role reference in the base configuration shared by all acceptance tests.
Also aligns acceptance test names with the corresponding resources.
Relations
Relates #36851
Output from Acceptance Testing