Skip to content

Commit

Permalink
adding verbose and debugging options to try and see why this test is
Browse files Browse the repository at this point in the history
running so long.
  • Loading branch information
daveremy committed Sep 27, 2018
1 parent 95ee037 commit 1df427c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions misc/test/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,11 @@ func TestExamples(t *testing.T) {
},
}),
base.With(integration.ProgramTestOptions{
Dir: path.Join(cwd, "..", "..", "azure-ts-aks-helm"),
SkipBuild: true,
Dir: path.Join(cwd, "..", "..", "azure-ts-aks-helm"),
Verbose: true,
DebugLogLevel: 8,
DebugUpdates: true,
SkipBuild: true,
Config: map[string]string{
"azure:environment": azureEnviron,
"password": "testTEST1234+_^$",
Expand All @@ -116,7 +119,6 @@ func TestExamples(t *testing.T) {
return assert.Contains(t, body, "It works!")
})
},
Verbose: true,
}),
// TODO[pulumi/pulumi#1606] This test is failing in CI, disabling until this issue is resolved.
// base.With(integration.ProgramTestOptions{
Expand Down

0 comments on commit 1df427c

Please sign in to comment.