Skip to content

Commit 0d5f4e3

Browse files
authored
Disable two flaky tests (pulumi#261)
1 parent a0813b9 commit 0d5f4e3

File tree

1 file changed

+24
-14
lines changed

1 file changed

+24
-14
lines changed

misc/test/examples_test.go

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -200,20 +200,30 @@ func TestExamples(t *testing.T) {
200200
// "aws-ts-twitter-athena:twitterQuery": "smurfs",
201201
// },
202202
// }),
203-
base.With(integration.ProgramTestOptions{
204-
Dir: path.Join(cwd, "..", "..", "aws-ts-url-shortener-cache-http"),
205-
Config: map[string]string{
206-
"aws:region": awsRegion,
207-
"redisPassword": "s3cr7Password",
208-
},
209-
}),
210-
base.With(integration.ProgramTestOptions{
211-
Dir: path.Join(cwd, "..", "..", "aws-ts-voting-app"),
212-
Config: map[string]string{
213-
"aws:region": awsRegion,
214-
"redisPassword": "s3cr7Password",
215-
},
216-
}),
203+
204+
// Test disabled due to flakiness (often times out when destroying)
205+
// https://github.com/pulumi/examples/issues/260
206+
/*
207+
base.With(integration.ProgramTestOptions{
208+
Dir: path.Join(cwd, "..", "..", "aws-ts-url-shortener-cache-http"),
209+
Config: map[string]string{
210+
"aws:region": awsRegion,
211+
"redisPassword": "s3cr7Password",
212+
},
213+
}),
214+
*/
215+
216+
// Test disabled due to flakiness (often times out when destroying)
217+
// https://github.com/pulumi/examples/issues/260
218+
/*
219+
base.With(integration.ProgramTestOptions{
220+
Dir: path.Join(cwd, "..", "..", "aws-ts-voting-app"),
221+
Config: map[string]string{
222+
"aws:region": awsRegion,
223+
"redisPassword": "s3cr7Password",
224+
},
225+
}),
226+
*/
217227
base.With(integration.ProgramTestOptions{
218228
Dir: path.Join(cwd, "..", "..", "azure-js-webserver"),
219229
Config: map[string]string{

0 commit comments

Comments
 (0)