When I run terraform apply manually, warnings emitted by my provider using resp.Diagnostics.AddWarning(...) are displayed as expected. However, when the same configuration is executed via terraform-plugin-testing (using resource.Test), those warnings are not shown in the go test -v output.
I’m not looking to assert on the warnings—I’d simply like them to be printed during the test run, without enabling Terraform debug logging or rerunning the configuration manually.
Is there a supported way to access or display these warning diagnostics from an acceptance test?