Skip to content
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

Disable Integration tests #590

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion examples/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ func getCwd(t *testing.T) string {
return cwd
}

func getBaseOptions(*testing.T) integration.ProgramTestOptions {
func getBaseOptions(t *testing.T) integration.ProgramTestOptions {
t.Skip(`Testing for pulumi-f5bigip needs to be robust to resource leaks (#556).

In the past, we have leaked resources here. Our normal ec2 reaper did not catch those
leaks. Until and unless we ensure that testing here will not cost an unexpectedly large
amount, we have chosen to discontinue testing pulumi-f5bigip in CI.`)

return integration.ProgramTestOptions{
ExpectRefreshChanges: true,
}
Expand Down
Loading