Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not set DestroyOnCleanup for matrix tests (#2975)
Generic CI failures with "The maximum number of VPCs has been reached” point to large number of VPCs. ``` // Destroy on cleanup defers stack destruction until the test cleanup step, rather than after // program test execution. This is useful for more realistic stack reference testing, allowing one // project and stack to be stood up and a second to be run before the first is destroyed. // // Implies NoParallel because we expect that another caller to ProgramTest will set that ``` One problem here is that a matrix-style test that tries 100 random combinations of VPC+Bucket should not be setting DestroyOnCleanup.
- Loading branch information