Skip to content

Commit

Permalink
even more
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHougaard committed Nov 2, 2024
1 parent 05a839d commit 31c3abd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/azure-auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ func TestAzureLogin(t *testing.T) {
if err != nil {
fmt.Printf("Azure Auth Error: %v\n", err)
}
time.Sleep(1 * time.Second)

fmt.Printf("Azure Auth listing secrets\n")
err = CallListSecretsAzure(client)
Expand Down
3 changes: 3 additions & 0 deletions test/local-auths_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,18 +115,21 @@ func TestAWSAuthLogin(t *testing.T) {
if err != nil {
fmt.Printf("AWS Auth Error: %v\n", err)
}
time.Sleep(1 * time.Second)

fmt.Printf("Testing GCP Auth\n")
err = GCPAuthLogin()
if err != nil {
fmt.Printf("GCP Auth Error: %v\n", err)
}
time.Sleep(1 * time.Second)

fmt.Printf("Testing Universal Auth\n")
err = UniversalAuthLogin()
if err != nil {
fmt.Printf("Universal Auth Error: %v\n", err)
}
time.Sleep(1 * time.Second)

fmt.Printf("Testing Access Token Auth\n")
err = AccessTokenLogin()
Expand Down

0 comments on commit 31c3abd

Please sign in to comment.