-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
Fixes non-service acceptance tests #29192
Conversation
Community NoteVoting for Prioritization
For Submitters
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
$ TF_ACC=1 go test ./internal/acctest/... ./internal/provider/... -run=TestAcc -v
testing: warning: no tests to run
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/acctest 3.045s [no tests to run]
=== RUN TestAccProvider_DefaultTags_emptyBlock
=== PAUSE TestAccProvider_DefaultTags_emptyBlock
=== RUN TestAccProvider_DefaultTagsTags_none
=== PAUSE TestAccProvider_DefaultTagsTags_none
=== RUN TestAccProvider_DefaultTagsTags_one
=== PAUSE TestAccProvider_DefaultTagsTags_one
=== RUN TestAccProvider_DefaultTagsTags_multiple
=== PAUSE TestAccProvider_DefaultTagsTags_multiple
=== RUN TestAccProvider_DefaultAndIgnoreTags_emptyBlocks
=== PAUSE TestAccProvider_DefaultAndIgnoreTags_emptyBlocks
=== RUN TestAccProvider_endpoints
=== PAUSE TestAccProvider_endpoints
=== RUN TestAccProvider_fipsEndpoint
=== PAUSE TestAccProvider_fipsEndpoint
=== RUN TestAccProvider_unusualEndpoints
=== PAUSE TestAccProvider_unusualEndpoints
=== RUN TestAccProvider_IgnoreTags_emptyBlock
=== PAUSE TestAccProvider_IgnoreTags_emptyBlock
=== RUN TestAccProvider_IgnoreTagsKeyPrefixes_none
=== PAUSE TestAccProvider_IgnoreTagsKeyPrefixes_none
=== RUN TestAccProvider_IgnoreTagsKeyPrefixes_one
=== PAUSE TestAccProvider_IgnoreTagsKeyPrefixes_one
=== RUN TestAccProvider_IgnoreTagsKeyPrefixes_multiple
=== PAUSE TestAccProvider_IgnoreTagsKeyPrefixes_multiple
=== RUN TestAccProvider_IgnoreTagsKeys_none
=== PAUSE TestAccProvider_IgnoreTagsKeys_none
=== RUN TestAccProvider_IgnoreTagsKeys_one
=== PAUSE TestAccProvider_IgnoreTagsKeys_one
=== RUN TestAccProvider_IgnoreTagsKeys_multiple
=== PAUSE TestAccProvider_IgnoreTagsKeys_multiple
=== RUN TestAccProvider_Region_c2s
=== PAUSE TestAccProvider_Region_c2s
=== RUN TestAccProvider_Region_china
=== PAUSE TestAccProvider_Region_china
=== RUN TestAccProvider_Region_commercial
=== PAUSE TestAccProvider_Region_commercial
=== RUN TestAccProvider_Region_govCloud
=== PAUSE TestAccProvider_Region_govCloud
=== RUN TestAccProvider_Region_sc2s
=== PAUSE TestAccProvider_Region_sc2s
=== RUN TestAccProvider_Region_stsRegion
=== PAUSE TestAccProvider_Region_stsRegion
=== RUN TestAccProvider_AssumeRole_empty
=== PAUSE TestAccProvider_AssumeRole_empty
=== CONT TestAccProvider_DefaultTags_emptyBlock
=== CONT TestAccProvider_AssumeRole_empty
=== CONT TestAccProvider_IgnoreTagsKeyPrefixes_multiple
=== CONT TestAccProvider_fipsEndpoint
=== CONT TestAccProvider_IgnoreTags_emptyBlock
=== CONT TestAccProvider_unusualEndpoints
=== CONT TestAccProvider_Region_china
=== CONT TestAccProvider_Region_stsRegion
=== CONT TestAccProvider_Region_sc2s
=== CONT TestAccProvider_IgnoreTagsKeyPrefixes_none
--- PASS: TestAccProvider_Region_stsRegion (7.34s)
=== CONT TestAccProvider_Region_govCloud
--- PASS: TestAccProvider_Region_sc2s (7.45s)
=== CONT TestAccProvider_Region_commercial
--- PASS: TestAccProvider_Region_china (7.66s)
=== CONT TestAccProvider_IgnoreTagsKeys_multiple
--- PASS: TestAccProvider_DefaultTags_emptyBlock (9.25s)
=== CONT TestAccProvider_Region_c2s
--- PASS: TestAccProvider_IgnoreTagsKeyPrefixes_none (9.52s)
=== CONT TestAccProvider_IgnoreTagsKeyPrefixes_one
--- PASS: TestAccProvider_IgnoreTagsKeyPrefixes_multiple (9.64s)
=== CONT TestAccProvider_DefaultTagsTags_multiple
--- PASS: TestAccProvider_IgnoreTags_emptyBlock (9.64s)
=== CONT TestAccProvider_DefaultTagsTags_one
=== CONT TestAccProvider_DefaultAndIgnoreTags_emptyBlocks
--- PASS: TestAccProvider_Region_govCloud (6.62s)
--- PASS: TestAccProvider_Region_commercial (7.00s)
=== CONT TestAccProvider_DefaultTagsTags_none
--- PASS: TestAccProvider_Region_c2s (6.73s)
=== CONT TestAccProvider_endpoints
--- PASS: TestAccProvider_AssumeRole_empty (16.38s)
=== CONT TestAccProvider_IgnoreTagsKeys_one
--- PASS: TestAccProvider_IgnoreTagsKeys_multiple (9.30s)
=== CONT TestAccProvider_IgnoreTagsKeys_none
--- PASS: TestAccProvider_IgnoreTagsKeyPrefixes_one (8.76s)
--- PASS: TestAccProvider_DefaultTagsTags_one (8.97s)
--- PASS: TestAccProvider_DefaultTagsTags_multiple (9.01s)
--- PASS: TestAccProvider_DefaultAndIgnoreTags_emptyBlocks (7.81s)
--- PASS: TestAccProvider_DefaultTagsTags_none (7.38s)
--- PASS: TestAccProvider_IgnoreTagsKeys_one (6.62s)
--- PASS: TestAccProvider_IgnoreTagsKeys_none (6.44s)
--- PASS: TestAccProvider_unusualEndpoints (60.50s)
--- PASS: TestAccProvider_endpoints (54.00s)
--- PASS: TestAccProvider_fipsEndpoint (76.96s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/provider 81.556s
? github.com/hashicorp/terraform-provider-aws/internal/provider/fwprovider [no test files]
This functionality has been released in v4.53.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. |
The switch to accessor functions for service clients in #28499 means that checks for fields not longer work.
Output from Acceptance Testing