Skip to content

Commit

Permalink
Disable two flaky tests (pulumi#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
swgillespie authored Mar 26, 2019
1 parent a0813b9 commit 0d5f4e3
Showing 1 changed file with 24 additions and 14 deletions.
38 changes: 24 additions & 14 deletions misc/test/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,20 +200,30 @@ func TestExamples(t *testing.T) {
// "aws-ts-twitter-athena:twitterQuery": "smurfs",
// },
// }),
base.With(integration.ProgramTestOptions{
Dir: path.Join(cwd, "..", "..", "aws-ts-url-shortener-cache-http"),
Config: map[string]string{
"aws:region": awsRegion,
"redisPassword": "s3cr7Password",
},
}),
base.With(integration.ProgramTestOptions{
Dir: path.Join(cwd, "..", "..", "aws-ts-voting-app"),
Config: map[string]string{
"aws:region": awsRegion,
"redisPassword": "s3cr7Password",
},
}),

// Test disabled due to flakiness (often times out when destroying)
// https://github.com/pulumi/examples/issues/260
/*
base.With(integration.ProgramTestOptions{
Dir: path.Join(cwd, "..", "..", "aws-ts-url-shortener-cache-http"),
Config: map[string]string{
"aws:region": awsRegion,
"redisPassword": "s3cr7Password",
},
}),
*/

// Test disabled due to flakiness (often times out when destroying)
// https://github.com/pulumi/examples/issues/260
/*
base.With(integration.ProgramTestOptions{
Dir: path.Join(cwd, "..", "..", "aws-ts-voting-app"),
Config: map[string]string{
"aws:region": awsRegion,
"redisPassword": "s3cr7Password",
},
}),
*/
base.With(integration.ProgramTestOptions{
Dir: path.Join(cwd, "..", "..", "azure-js-webserver"),
Config: map[string]string{
Expand Down

0 comments on commit 0d5f4e3

Please sign in to comment.